summaryrefslogtreecommitdiff
path: root/nuttx/arch/z16/src
Commit message (Collapse)AuthorAgeFilesLines
* Make some file section headers more consistent with standardGregory Nutt2015-04-0819-19/+19
|
* Add support for dumping board-specific information on assertion. From David ↵Gregory Nutt2015-03-041-0/+4
| | | | Sidrane
* arch/: board function prototypes are now in include/nuttx/board.h. Remove ↵Gregory Nutt2015-02-278-20/+15
| | | | from architecture header file; Add inclusion of nuttx/board.h to all files referencing board functions
* Big, very risky change: Remove all occurrences of up_maskack_irq() that ↵Gregory Nutt2015-02-093-18/+8
| | | | disable and enable interrupts with up_ack_irq() that only acknowledges the interrupts. This is only used in interrupt decoding logic. Also remove the logic that unconditionally re-enables interrupts with the interrupt exits. This interferes with the drivers ability to control the interrupt state. This is a necessary, sweeping, global change and unfortunately impossible to test.
* SYSLOG: Add an option to use the syslog'ing device as the system ↵Gregory Nutt2015-02-081-0/+3
| | | | consolution. This option enables a low-level, write-only console device at /dev/console (similar to the low-level UART console device). From Pierre-noel Bouteville.
* Remove CONFIG_DEBUG_STACK. Adding CONFIG_STACK_COLORATION makes this ↵Gregory Nutt2015-01-241-5/+1
| | | | configuration option pointless
* Update everything under nuttx/arch to use the corrected syslog interfacesGregory Nutt2014-10-084-50/+64
|
* The 'make export' target needs to bundle up the user C startup file (crt0), ↵Gregory Nutt2014-09-041-4/+5
| | | | not the kernel head object
* There used to be two ways to pass parameters to new tasks, depending upon ↵Gregory Nutt2014-09-012-1/+3
| | | | the configuration: Either (1) argv[] as created as an array with each string strdup'ed. Or (1) argv[] array and strings were created on the stack before the new task was started. Now, there is only one way, way (1). Way (2) might be slightly more compact, but this is not worth carry the complexity of two different ways of doing the same thing.
* Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency ↵Gregory Nutt2014-08-311-2/+2
| | | | with other naming
* Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate ↵Gregory Nutt2014-08-293-51/+3
| | | | new CONFIG_BUILD_KERNEL
* Remove os_internal.h it has been replace by several new header files under ↵Gregory Nutt2014-08-087-7/+2
| | | | sched/. There have been some sneak inclusion paths via os_internal.h, so expect a few compilation errors for some architectures
* Replace os_internal.h with sched/sched.h in files that actually reference ↵Gregory Nutt2014-08-089-9/+9
| | | | something in sched.h
* Move task control files from sched/ to sched/taskGregory Nutt2014-08-081-4/+5
|
* Move clock functions from sched/ to sched/clockGregory Nutt2014-08-082-2/+2
|
* Change all time conversions. Yech. New timer units in microseconds breaks ↵Gregory Nutt2014-08-071-1/+1
| | | | all existing logic that used milliseconds in the conversions. Something likely got broken doing this, probably because I confused a MSEC2TICK conversion with a TICK2MSEC conversion. Also, the tickless OS no appears fully functional and passes the OS test on the simulator with no errors
* Rename up_timerinit() to up_timer_initailize(); Add prototypes for candidate ↵Gregory Nutt2014-08-064-5/+9
| | | | interfaces for the tickless OS; Don't build existing timer initialization logic if CONFIG_SCHED_TICKLESS is defined.
* Make sure that all references to up_prioritize_irq() are conditioned on ↵Gregory Nutt2014-05-201-1/+2
| | | | CONFIG_ARCH_IRQPRIO. Noted by Make Smith
* Add serial method so that lower half driver can provide RX flow control ↵Gregory Nutt2014-05-081-0/+3
| | | | information. From Jussi Kivilinna
* Fix spelling, only one t in exitingGregory Nutt2014-04-271-1/+1
|
* Minor/cosmetic changesGregory Nutt2014-04-271-5/+5
|
* Zneo: ESPI needs to configure GPIO for ESPIGregory Nutt2014-04-261-1/+17
|
* Zneo: Misc minor updates from debuggingGregory Nutt2014-04-261-1/+1
|
* Zneo: Fix UART1 buffer setupGregory Nutt2014-04-261-4/+6
|
* ZNeo Serial: Need to configure UART1 alternate functionGregory Nutt2014-04-263-138/+174
|
* Zneo Serial: Fix cut'n'paste error in some conditional configurationGregory Nutt2014-04-261-5/+8
|
* ZNeo: Calculation of timer reload and prescaler was wrongGregory Nutt2014-04-252-468/+566
|
* Updates to ZNeo configurations + misc cosmetic changes to commentsGregory Nutt2014-04-251-1/+3
|
* 16z: Reduce size of stacksGregory Nutt2014-04-251-6/+6
|
* Minor and cosmetic changes from initial 16z (v2) bringupGregory Nutt2014-04-241-429/+429
|
* ZNEO: Add ESPI driverGregory Nutt2014-04-244-13/+1031
|
* More trailing whilespace removalGregory Nutt2014-04-1315-26/+26
|
* Make sure that there is one space after forGregory Nutt2014-04-121-1/+1
|
* mv ramlog.h and syslog.h to new include/nuttx/syslogGregory Nutt2014-04-101-1/+1
|
* Add option to dump buffered USB trace data on an assertionGregory Nutt2014-03-201-3/+29
|
* Many changes to reduce complaints from CppCheck. Several latent bugs fixes, ↵Gregory Nutt2014-02-101-3/+1
| | | | but probably some new typos introduced
* rename up_led*() functions to board_led_*()Gregory Nutt2014-01-249-20/+20
|
* The optimization level can now be selected as part of the configurationGregory Nutt2014-01-241-4/+4
|
* Should enable external bus after configuring itGregory Nutt2014-01-231-74/+80
|
* 16z: Fix option bits; adjust system clock frequencyGregory Nutt2014-01-233-32/+22
|
* 16Z: Some early bring-up fixesGregory Nutt2014-01-222-62/+89
|
* configs/16z: Add support for 16z boardGregory Nutt2014-01-224-57/+179
|
* ZNEO: Fix lost serial interrupt bugGregory Nutt2014-01-021-0/+7
|
* Add Z16F NSH configurationGregory Nutt2014-01-012-23/+25
|
* Various changes for a clean ZNEO ZDS-II buildGregory Nutt2013-12-192-3/+59
|
* Clean up some naming: fd vs. fildes vs. filedes and filep vs filpGregory Nutt2013-09-281-3/+3
|
* Upate .gitignore files. Add .dSYM. Make sure / is present where needed. ↵Gregory Nutt2013-05-301-6/+5
| | | | Add some missing .gitignore files
* Remove up_assert_codeGregory Nutt2013-04-257-160/+119
|
* Adding missing registration of /dev/zero; Condition registration of ↵Gregory Nutt2013-04-241-0/+8
| | | | /dev/null. From Ken Petit
* _exit() should not call atexit() or on_exit() functions; Rename ↵Gregory Nutt2013-04-181-1/+1
| | | | task_deletecurrent() to task_exit()