summaryrefslogtreecommitdiff
path: root/nuttx/arch/mips
Commit message (Collapse)AuthorAgeFilesLines
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU is all MCU Ethernet driversGregory Nutt2014-11-161-5/+5
|
* Netwoek: Ada a parameter to netdev_register() to indicate the link protocol ↵Gregory Nutt2014-11-151-1/+1
| | | | supported by the driver. Use this value to replace some logic commited yesterday
* Move selection for CONFIG_SERIAL_TERMIOS out of MCU Kconfigs to common ↵Gregory Nutt2014-10-272-9/+7
| | | | drivers/serial/Kconfig. Add CONFIG_ARCH_HAVE_SERIAL_TERMIOS to indicate if an MCU supports TERMIOS
* For PIC32MX7, DEVCFG0 bit 2 must be setGregory Nutt2014-10-091-1/+1
|
* Update everything under nuttx/arch to use the corrected syslog interfacesGregory Nutt2014-10-082-18/+33
|
* The 'make export' target needs to bundle up the user C startup file (crt0), ↵Gregory Nutt2014-09-041-3/+4
| | | | not the kernel head object
* There used to be two ways to pass parameters to new tasks, depending upon ↵Gregory Nutt2014-09-012-12/+14
| | | | 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.
* Reanem kzalloc to kmm_zalloc for consistencyGregory Nutt2014-08-311-1/+1
|
* Rename kmalloc to kmm_malloc for consistencyGregory Nutt2014-08-312-2/+2
|
* Rename kfree to kmm_free for consistency with other naming conventionsGregory Nutt2014-08-311-1/+1
|
* 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-298-16/+16
| | | | new CONFIG_BUILD_KERNEL
* Fix an error introduced into ALL implmentations of interrupt dispatch logicGregory Nutt2014-08-282-2/+2
|
* Add address environment support to ALL implementatins of up_release_pending()Gregory Nutt2014-08-281-2/+17
|
* Add address environment support to ALL implementatins of up_reprioritize_rtr()Gregory Nutt2014-08-281-2/+17
|
* MIPS: Move address environment switch from the task switchers to the ↵Gregory Nutt2014-08-284-49/+82
| | | | interrupt handler. That may save doing the action multiple times per interrupt
* Add ADDRENV support to ALL implmentations of _exit()Gregory Nutt2014-08-271-1/+12
|
* Add ADDRENV support to ALL implementations of up_unblock_task()Gregory Nutt2014-08-271-4/+28
|
* Add ADDRENV support to all implementations of up_block_task()Gregory Nutt2014-08-271-3/+26
|
* wdog.h does not contain any application interface, only internal OS ↵Gregory Nutt2014-08-212-5/+5
| | | | interface. Further, it is non-standard. Move wdog.h from include/ to include/nuttx. For the same reason, move the description of the watchdog timer interfaces from the Users Guide to the Porting Guide.
* Remove os_internal.h it has been replace by several new header files under ↵Gregory Nutt2014-08-087-7/+3
| | | | 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-0810-10/+10
| | | | something in sched.h
* Move task control files from sched/ to sched/taskGregory Nutt2014-08-081-3/+4
|
* 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-7/+10
| | | | interfaces for the tickless OS; Don't build existing timer initialization logic if CONFIG_SCHED_TICKLESS is defined.
* NET: emoved all includes of uip.h; added includes of ip.h wherever needed. ↵Gregory Nutt2014-07-041-1/+2
| | | | Tried to fix problems of the now missing sneak inclusions because uip.h was removed. There are probably a few of these that were missed.
* Remove all inclusion of uip.hGregory Nutt2014-07-041-1/+0
|
* NET: More renamingGregory Nutt2014-07-041-3/+3
|
* NET: Rename XYZ_uiptxpoll to just XYZ_txpollGregory Nutt2014-07-011-5/+5
|
* Rename uip_poll->devif_poll and uip_timer->devif_timerGregory Nutt2014-06-301-3/+3
|
* Rename uip_input to devif_inputGregory Nutt2014-06-301-1/+1
|
* Rename uip_driver_s net_driver_sGregory Nutt2014-06-271-13/+13
|
* Rename ip_eth_hdr to eth_hdr_sGregory Nutt2014-06-251-1/+1
|
* Move the remaining files from include/nuttx/net/uip to include/nuttx/net; ↵Gregory Nutt2014-06-241-1/+1
| | | | Rename *_internal.h header files in net/ to just *.h
* Move include/nuttx/net/uip/uip-arch.h to include/nuttx/net/netdev.hGregory Nutt2014-06-241-1/+1
|
* Move include/nuttx/net/uipopt.h to include/nuttx/net/netconfig.hGregory Nutt2014-06-241-1/+1
|
* Move include/nuttx/net/uip/uip-arch.h to include/nuttx/net/arp.h; rename all ↵Gregory Nutt2014-05-301-5/+5
| | | | uip_arp_ functions to arp_
* Change all variadic macros to C99 styleGregory Nutt2014-05-221-1/+1
|
* Make sure that all references to up_prioritize_irq() are conditioned on ↵Gregory Nutt2014-05-204-2/+14
| | | | 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
|
* More trailing whilespace removalGregory Nutt2014-04-1319-52/+52
|
* Make sure that there is one space after forGregory Nutt2014-04-122-2/+2
|
* Make sure that there is one space between while and conditionGregory Nutt2014-04-123-3/+4
|
* 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-1/+27
|
* configs/pic32-starterkit/nsh converted to use the kconfig-frontends toolsGregory Nutt2014-03-011-1/+2
|
* configs/mirtoo/nsh converted to use the kconfig-frontends toolsGregory Nutt2014-03-011-7/+89
|
* rename up_led*() functions to board_led_*()Gregory Nutt2014-01-2414-1127/+1127
|