summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm32f3discovery
Commit message (Collapse)AuthorAgeFilesLines
* Move board_ prototypes from arch.h to board.hGregory Nutt2015-02-271-2/+3
|
* configs/: board function prototypes are now in include/nuttx/board.h. ↵Gregory Nutt2015-02-272-6/+6
| | | | Remove from board header file; Add inclusion of nuttx/board.h to all files referencing board functions
* Unify sensor debug. ADX driver was using input debug; LM75 and QENCODE that ↵Gregory Nutt2014-12-161-26/+2
| | | | their own custom debug. Now all use CONFIG_DEBUG_SENSOR, sndbg()
* Remove CONFIG_MAX_TASK_ARGS from all Kconfigs and defconfigsGregory Nutt2014-11-122-2/+0
|
* Remove non-standard, conditional syslog_enable(), instead only the required, ↵Gregory Nutt2014-10-092-2/+2
| | | | standard setlogmask()
* All NSH-related files under nuttx/configs changed to use the corrected ↵Gregory Nutt2014-10-081-18/+2
| | | | syslog interfaces
* Rename CONFIG_EXAMPLES_NXCONSOLE to CONFIG_EXAMPLES_NXTERM; rename ↵Gregory Nutt2014-09-202-2/+2
| | | | CONFIG_NXWM_NXCONSOLE to CONFIG_NXWM_NXTERM
* Every defconfig file should now have a valid setting for CONFIG_WDOG_INTRESERVEGregory Nutt2014-09-032-0/+2
|
* Remove final traces of the 8015 from the NuttX source treeGregory Nutt2014-09-012-4/+0
|
* Remove CONFIG_MM_MULTIHEAP. Non-multiheap operation is no longer supportedGregory Nutt2014-08-312-2/+0
|
* Change CONFIG_ADDRENV to CONFIG_ARCH_ADDRENV; change how it is selected -- ↵Gregory Nutt2014-08-242-2/+2
| | | | the architecure must first declare support
* Change CONFIG_MSEC_PER_TICK to CONFIG_USEC_PER_TICK. This gives more ↵Gregory Nutt2014-08-072-2/+2
| | | | 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-072-2/+0
|
* Rename apps/examples/uip to apps/examples/webserverGregory Nutt2014-07-032-2/+2
|
* NET: Rename uiplib/UIPLIB to netlib/NETLIBGregory Nutt2014-07-022-2/+2
|
* STM32: Fix STM32F100CB pin configuration (from Kosma Moczek); and make chip ↵Gregory Nutt2014-05-072-10/+10
| | | | naming a little more consistent
* The alternate console device CONFIG_NSH_CONDEV must not be defined ↵Gregory Nutt2014-05-052-2/+2
| | | | 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-163-6/+2
|
* More trailing whilespace removalGregory Nutt2014-04-1310-23/+23
|
* Long needed clean up of DNS resolver for coding style and naming conventionsGregory Nutt2014-04-112-2/+2
|
* configs/*/defconfig: Increase the number of pre-allocated watchdogs in ↵Gregory Nutt2014-04-092-2/+2
| | | | configurations that use networking or USB
* Removed the CONFIG_NUTTX_NEWCONFIG setting from every defconfig fileGregory Nutt2014-03-062-2/+0
|
* Use common naming for rest of the toolchains tooGregory Nutt2014-03-051-22/+4
|
* Use common naming for all buildroot toolchainsGregory Nutt2014-03-051-19/+19
|
* Removed almost all ostest configurationsGregory Nutt2014-02-284-877/+0
|
* configs/*/defconfig: If CONFIG_NSH_LIBRARY is set, make sure that ↵Gregory Nutt2014-02-282-0/+4
| | | | CONFIG_NSH_READLINE is also set or the configuration will use the CLE the next time it is reconfigured
* rename up_led*() functions to board_led_*()Gregory Nutt2014-01-242-11/+11
|
* Rename up_irqbutton() to board_button_irq()Gregory Nutt2014-01-241-4/+4
|
* Rename up_buttons() to board_buttons()Gregory Nutt2014-01-241-7/+7
|
* Rename up_buttoninit to board_button_intializeGregory Nutt2014-01-242-36/+7
|
* The optimization level can now be selected as part of the configurationGregory Nutt2014-01-243-3/+0
|
* Finishes separation of debug symbols and optimization selectionsGregory Nutt2013-12-203-6/+12
|
* Add framework for Spark Core board support. The initial commit is a clone ↵Gregory Nutt2013-10-021-1/+1
| | | | of the Maple Mini and still needs Spark customizations
* Mov apps/examples/composite to apps/system/composite; convert ↵Gregory Nutt2013-09-253-3/+3
| | | | configs/stm3210e-eval/composite to use kconfig-frontend tools -- untested
* Move apps/examples/cdcacm to apps/system/cdcacmGregory Nutt2013-09-254-26/+139
|
* Move apps/examples/usbmsc to apps/system/usbmscGregory Nutt2013-09-253-3/+3
|
* Finally... renamed all CONFIG_DRAM_ settings to CONFIG_RAM_Gregory Nutt2013-07-264-10/+10
|
* Created new directories to hold SPI-related filesGregory Nutt2013-07-011-3/+3
|
* Straighten out issues about who calls C++ initializers with CXXTEST or ↵Gregory Nutt2013-06-212-0/+2
| | | | HELLOXX are built as NSH applications; Add an ofstream test to CXXTEST suggested by Michael; Update many defconfig fiels to that they set configurations to handle C++ constructors just as before these configuration changes
* Add support for a generic windows-based EABI toolchain; Add NX configuration ↵Gregory Nutt2013-06-133-3/+3
| | | | to force default NXTK border colors
* Remove CONFIG_XYZ_BUILTIN configurations, replace with the single ↵Gregory Nutt2013-06-121-1/+0
| | | | CONFIG_NSH_BUILTIN_APPS. Add SAM3/4 sam_periphclks.h which is just a header file that includes the right header file. Misc SAM3U-EK cleanup
* .dSYM only needs to be in the same .gitignore files as .exeGregory Nutt2013-05-301-1/+0
|
* Upate .gitignore files. Add .dSYM. Make sure / is present where needed. ↵Gregory Nutt2013-05-301-0/+3
| | | | Add some missing .gitignore files
* Optimize request buffer sizes in the serial USB drivers so that we avoid so ↵Gregory Nutt2013-05-291-2/+2
| | | | many NULL packets and so that the OUT request buffer size is exactly the max packet size.
* Fix STM32F1 and F3 USB device driver. It was not handling NULL packets ↵Gregory Nutt2013-05-292-50/+129
| | | | correctly and it prevent use of the driver with the CDC/ACM class
* Fix typos in Kconfig filesGregory Nutt2013-04-201-5/+5
|
* Fix NuTiny-SDK-NUC120 LEDspatacongo2013-02-272-10/+6
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5679 42af7a65-404d-4744-a932-0658087f49c3
* Fix start-up of USB monitor in STM32F3Discovery configuration; Back out back ↵patacongo2013-02-124-47/+5
| | | | | | checkin of STM32 F1/F3 USB device driver git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5641 42af7a65-404d-4744-a932-0658087f49c3
* Fixes to get USB working on STM32 F3patacongo2013-02-102-5/+30
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5638 42af7a65-404d-4744-a932-0658087f49c3
* Minor fixes for STM32 F3 USB still does not workpatacongo2013-02-101-63/+22
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5637 42af7a65-404d-4744-a932-0658087f49c3