summaryrefslogtreecommitdiff
path: root/nuttx/configs/sam4l-xplained
Commit message (Collapse)AuthorAgeFilesLines
* Move board_ prototypes from arch.h to board.hGregory Nutt2015-02-271-1/+2
|
* configs/: board function prototypes are now in include/nuttx/board.h. ↵Gregory Nutt2015-02-272-3/+6
| | | | Remove from board header file; Add inclusion of nuttx/board.h to all files referencing board functions
* configs/: Remove prototypes of board_led* functions from all board header filesGregory Nutt2015-02-271-8/+0
|
* Remove CONFIG_MAX_TASK_ARGS from all Kconfigs and defconfigsGregory Nutt2014-11-121-1/+0
|
* Remove non-standard, conditional syslog_enable(), instead only the required, ↵Gregory Nutt2014-10-091-1/+1
| | | | standard setlogmask()
* All NSH-related files under nuttx/configs changed to use the corrected ↵Gregory Nutt2014-10-081-21/+5
| | | | syslog interfaces
* Rename CONFIG_EXAMPLES_NXCONSOLE to CONFIG_EXAMPLES_NXTERM; rename ↵Gregory Nutt2014-09-201-1/+1
| | | | CONFIG_NXWM_NXCONSOLE to CONFIG_NXWM_NXTERM
* Every defconfig file should now have a valid setting for CONFIG_WDOG_INTRESERVEGregory Nutt2014-09-031-0/+1
|
* Remove final traces of the 8015 from the NuttX source treeGregory Nutt2014-09-011-2/+0
|
* Remove CONFIG_MM_MULTIHEAP. Non-multiheap operation is no longer supportedGregory Nutt2014-08-311-1/+0
|
* Change CONFIG_ADDRENV to CONFIG_ARCH_ADDRENV; change how it is selected -- ↵Gregory Nutt2014-08-241-1/+1
| | | | the architecure must first declare support
* Change CONFIG_MSEC_PER_TICK to CONFIG_USEC_PER_TICK. This gives more ↵Gregory Nutt2014-08-071-1/+1
| | | | options for system timers in general, but more importantly, let's us realize higher resolution for the case of CONFIG_SCHED_TICKLESS=y -- of course, at the risk of some new interger overvflow problems
* Remove CONFIG_DISABLE_CLOCKGregory Nutt2014-08-071-1/+0
|
* Fix some cloned errors in SAM GPIO interrupt setupGregory Nutt2014-07-071-12/+12
|
* Rename apps/examples/uip to apps/examples/webserverGregory Nutt2014-07-031-1/+1
|
* NET: Rename uiplib/UIPLIB to netlib/NETLIBGregory Nutt2014-07-021-1/+1
|
* Fix typos from previous commit to fix button interruptsGregory Nutt2014-06-221-1/+1
|
* Several other interrupt button implementations had the same problem as did ↵Gregory Nutt2014-06-151-4/+17
| | | | the sam4s-xplained
* Change all variadic macros to C99 styleGregory Nutt2014-05-221-2/+2
|
* The alternate console device CONFIG_NSH_CONDEV must not be defined ↵Gregory Nutt2014-05-051-1/+1
| | | | unconditionally. This causes errors when using Telnet sessions. This was solved by adding CONFIG_NSH_ALTCONDEV: CONFIG_NSH_ALTCONDEV enables or disables the feature then, if enabled, CONFIG_NSH_CONDEV provides the alternative console device name
* Undefine IRQPRIO in all configurations it should not be setGregory Nutt2014-04-162-5/+1
|
* More trailing whilespace removalGregory Nutt2014-04-133-3/+3
|
* Documentatin updated; fix errors in some commentsGregory Nutt2014-03-281-3/+2
|
* SAM3/4: Rename CONFIG_GPIO*_IRQ to CONFIG_SAM34_GPIO*_IRQ in all ↵Gregory Nutt2014-03-234-7/+7
| | | | board-related files
* Backport SPI driver enhancements from SAMA5 to SAM3/4Gregory Nutt2014-03-131-11/+11
|
* Refresh several defconfig files to (1) bring them up-to-date, and (2) to ↵Gregory Nutt2014-03-061-18/+145
| | | | confirm that no bugs were introduced in recent massive Kconfig file changes
* Removed the CONFIG_NUTTX_NEWCONFIG setting from every defconfig fileGregory Nutt2014-03-061-1/+0
|
* Removed almost all ostest configurationsGregory Nutt2014-02-284-808/+0
|
* configs/*/defconfig: If CONFIG_NSH_LIBRARY is set, make sure that ↵Gregory Nutt2014-02-281-0/+2
| | | | CONFIG_NSH_READLINE is also set or the configuration will use the CLE the next time it is reconfigured
* Add configuration for the SAMD20 Xplained Pro board. Initial check a ↵Gregory Nutt2014-02-124-8/+8
| | | | low-effor, unverified clone of thoe SAM4L Xplained Pro board configuration
* Fix typo cloned to many files: SAM32 vs SAM34Gregory Nutt2014-02-122-2/+2
|
* Many changes to reduce complaints from CppCheck. Several latent bugs fixes, ↵Gregory Nutt2014-02-101-0/+1
| | | | but probably some new typos introduced
* rename up_led*() functions to board_led_*()Gregory Nutt2014-01-243-9/+9
|
* Rename up_irqbutton() to board_button_irq()Gregory Nutt2014-01-241-3/+3
|
* Rename up_buttons() to board_buttons()Gregory Nutt2014-01-241-5/+5
|
* Rename up_buttoninit to board_button_intializeGregory Nutt2014-01-242-47/+6
|
* The optimization level can now be selected as part of the configurationGregory Nutt2014-01-242-2/+0
|
* Finishes separation of debug symbols and optimization selectionsGregory Nutt2013-12-202-4/+8
|
* Clean up some naming: fd vs. fildes vs. filedes and filep vs filpGregory Nutt2013-09-281-7/+7
|
* Mov apps/examples/composite to apps/system/composite; convert ↵Gregory Nutt2013-09-252-2/+2
| | | | configs/stm3210e-eval/composite to use kconfig-frontend tools -- untested
* Move apps/examples/usbmsc to apps/system/usbmscGregory Nutt2013-09-252-2/+2
|
* Finally... renamed all CONFIG_DRAM_ settings to CONFIG_RAM_Gregory Nutt2013-07-263-8/+8
|
* Basic framework to support the AT91SAMA5D3 family and the SAMA5D3x-EK ↵Gregory Nutt2013-07-191-3/+2
| | | | board(s) in particular
* Add a general bit-bang SPI lower-half driver and implement the bit-bang ↵Gregory Nutt2013-07-011-2/+2
| | | | driver for the Arduino ITEAD TFT shield
* Created new directories to hold SPI-related filesGregory Nutt2013-07-013-5/+5
|
* Flesh out the Arduino Due board configuratino and integrate it with the ↵Gregory Nutt2013-06-272-8/+8
| | | | build and configuration system
* Add peripheral configuration logic for the SAM3X/3A; Change all references ↵Gregory Nutt2013-06-2610-40/+68
| | | | to SAM3/4 SPI to SPI0 for compatibity with the SAM3X/3A which has SPI0 and SPI1; Add directory which will eventually holdl an Arduino Due port
* Add support for a separate CCM memory allocator for members of the STM32 ↵Gregory Nutt2013-06-252-3/+18
| | | | family that support CCM memory
* Fix UG-2832HSWEG04 landscape. Add reverse landscape support to ↵Gregory Nutt2013-06-241-5/+18
| | | | UG_2864AMBAG01 and UG-9964HSWAG01. Fixe NXHELLO default colors for 1-bit mono modes
* Fix UG-2832HSWEG04 configuration valuesGregory Nutt2013-06-231-3/+3
|