summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Add option to indicatet that data is retained in SDRAMGregory Nutt2014-01-2815-21/+71
|
* A test of kconfig-fontends 3.12.0Gregory Nutt2014-01-271-10/+58
|
* Update kconfig-frontends to 3.12.0Gregory Nutt2014-01-2776-5780/+10513
|
* Remove EFM32 from build systemGregory Nutt2014-01-273-34/+0
|
* Remove support for EFM32. Not ready to be fieldedGregory Nutt2014-01-2720-2619/+2
|
* Correct document dateGregory Nutt2014-01-271-1/+1
|
* x86: fix 'Error: .size expression for idle_stack does not evaluate to a ↵Gregory Nutt2014-01-252-1/+4
| | | | constant' bug from Matt Campbell
* Improve documentation of naming conventionsGregory Nutt2014-01-252-90/+190
|
* rename up_led*() functions to board_led_*()Gregory Nutt2014-01-24256-1966/+1969
|
* Rename up_irqbutton() to board_button_irq()Gregory Nutt2014-01-2437-145/+146
|
* Rename up_buttons() to board_buttons()Gregory Nutt2014-01-2442-224/+226
|
* Rename up_buttoninit to board_button_intializeGregory Nutt2014-01-2483-1471/+409
|
* Add a patch to work around the bug in the ZDS-II 5.0.1 toolchainGregory Nutt2014-01-2416-245/+610
|
* NSH cosmetic changesGregory Nutt2014-01-242-5/+4
|
* ZNEO: Verify that currrent code still works on the ZiLOG boardGregory Nutt2014-01-247-1544/+0
|
* Suppress option to use custom optimization levels for architectures that do ↵Gregory Nutt2014-01-242-0/+8
| | | | not support it
* The optimization level can now be selected as part of the configurationGregory Nutt2014-01-24176-210/+97
|
* Should enable external bus after configuring itGregory Nutt2014-01-232-87/+119
|
* Assembler changes with the gcc-47 distribution from ARM mean that we need to ↵Gregory Nutt2014-01-232-16/+20
| | | | be explicit about branch one or more of the wide branch opcodes results in bad table branching. From Mike Smith
* 16z: Fix option bits; adjust system clock frequencyGregory Nutt2014-01-2311-59/+147
|
* configs/efm32-dk3650: Support for Energy Micro's development kit for the ↵Gregory Nutt2014-01-2311-3/+994
| | | | Leopard Gecko MCU. From Richard Cochran
* Basic support for the EFM32 processor family from Richar CochranGregory Nutt2014-01-2313-0/+1660
|
* arch/arm/src/Makefile: dependency directory list is now computed from the ↵Gregory Nutt2014-01-232-3/+7
| | | | VPATH. From Richard Cochran
* Config.mk: If WINTOOL is set, COMPILE definition should convert path ↵Gregory Nutt2014-01-232-4/+15
| | | | generated by Cygwin make to a proper Windows path. From Richard Cochran (2014-1-23).
* apps/examples/ostest: Spelling fix from Richard CochranGregory Nutt2014-01-231-1/+1
|
* configs/viewtool-stm32f107/netnsh: Increase the number of pre-allocated ↵Gregory Nutt2014-01-222-2/+12
| | | | watchdog timers.
* 16Z: Some early bring-up fixesGregory Nutt2014-01-2210-98/+116
|
* configs/16z: Add support for 16z boardGregory Nutt2014-01-2234-58/+4826
|
* VI: Fix loss of status line on display updateGregory Nutt2014-01-211-1/+1
|
* VI: all commands not seem functional. Still at least on display artifact ↵Gregory Nutt2014-01-213-12/+29
| | | | and probably some things not properly tested
* Networking: Improved status reporting and new carrier management ↵Gregory Nutt2014-01-2112-97/+259
| | | | interfaces. From Max Holtzberg
* configs/olimex-stm32-p107: Failes to build is SPI3 for UEXT is not remappedGregory Nutt2014-01-212-0/+6
|
* VI: Several bug fixesGregory Nutt2014-01-211-49/+136
|
* VI: Turn off cursor when updating screen; eliminate some warningsGregory Nutt2014-01-212-10/+80
|
* VI: Send the BEL character on errors to make a noise on errorsGregory Nutt2014-01-201-1/+30
|
* VI: Display origin for VT100 is (1,1), not (0,0)Gregory Nutt2014-01-202-5/+16
|
* VI: Fix some display and cursor position bugs... still plenty of bugsGregory Nutt2014-01-201-47/+73
|
* Refresh the Olimex LPC1766STK NSH configurationGregory Nutt2014-01-201-18/+131
|
* Update paths to more recent CodeSourcery toolchainGregory Nutt2014-01-2011-12/+23
|
* Fix formatting of the VT100 escapte sequenceGregory Nutt2014-01-202-14/+35
|
* VI: Add some debug instrumentationGregory Nutt2014-01-203-32/+174
|
* apps/system/vi: Add new tiny VI work-alike editor. Still a work in progress.Gregory Nutt2014-01-207-3/+3353
|
* getopt(): Could leave optind in undefined state if argc == 1Gregory Nutt2014-01-202-0/+6
|
* Minor documentation updates and other cosmetic changesGregory Nutt2014-01-206-11/+3
|
* ctypes.h: Fix typo in macro name iscontrol->iscntrlGregory Nutt2014-01-182-2/+4
|
* NSH: More break documentationGregory Nutt2014-01-182-0/+6
|
* NSH: Improved documentation of the break commandGregory Nutt2014-01-182-99/+132
|
* NSH: Add a break command; if-then-else and looping behavior can not be ↵Gregory Nutt2014-01-188-26/+191
| | | | configured out of the build for small systems that need minimal scripting capability
* X86: Add a configuration option to select the -m32 compiler option when neededGregory Nutt2014-01-184-17/+36
|
* NSH: Loosen up if-then-else-fi syntx so that a command can be on the same ↵Gregory Nutt2014-01-173-19/+33
| | | | line as the 'then' and 'else' tokens. This allows, as an example, 'if true; then echo true; else echo false; fi' which is much more bash-like