summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/lpc17xx
Commit message (Collapse)AuthorAgeFilesLines
* More bugs/warnings found by cppcheckGregory Nutt2014-11-242-2/+2
|
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU is all MCU Ethernet driversGregory Nutt2014-11-162-4/+4
|
* 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-271-14/+10
| | | | drivers/serial/Kconfig. Add CONFIG_ARCH_HAVE_SERIAL_TERMIOS to indicate if an MCU supports TERMIOS
* There used to be two ways to pass parameters to new tasks, depending upon ↵Gregory Nutt2014-09-011-3/+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 kmalloc to kmm_malloc for consistencyGregory Nutt2014-08-312-4/+4
|
* Rename kfree to kmm_free for consistency with other naming conventionsGregory Nutt2014-08-312-4/+4
|
* Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate ↵Gregory Nutt2014-08-298-21/+21
| | | | new CONFIG_BUILD_KERNEL
* wdog.h does not contain any application interface, only internal OS ↵Gregory Nutt2014-08-214-5/+4
| | | | 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-083-3/+0
| | | | sched/. There have been some sneak inclusion paths via os_internal.h, so expect a few compilation errors for some architectures
* Move clock functions from sched/ to sched/clockGregory Nutt2014-08-081-1/+1
|
* 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-062-3/+7
| | | | interfaces for the tickless OS; Don't build existing timer initialization logic if CONFIG_SCHED_TICKLESS is defined.
* LPC17xx: DC updates from Max. Also fixes some syntax errors that I ↵Gregory Nutt2014-07-282-85/+71
| | | | introduced in the last commit.
* LPC17 Ethernet: Added option to use the kernel worker thread to do most of ↵Gregory Nutt2014-07-242-21/+133
| | | | the workload with CONFIG_NET_WORKER_THREAD option in Kconfig. Eliminated a problem with PHY DP83848C : it doesn't need a specific initialization on mbed. Critical bufix: From time to time (after some hours) the Ethernet receiver would lose one receive interrupt and the IP stack never recover because there is no receive watchdog as the transmit watchdog. From Max
* Added burstmode ADC conversion mode, with CONFIG_ADC_BURSTMODE option in ↵Gregory Nutt2014-07-241-8/+223
| | | | Kconfig. From Max
* Mostly cosmetic changes from MaxGregory Nutt2014-07-243-66/+25
|
* Eliminate warnings. From MaxGregory Nutt2014-07-241-13/+6
|
* Lpc17xx Ethernet: Comment out an assertion that is reported to first ↵Gregory Nutt2014-07-111-0/+2
| | | | inappropriately. From Max
* 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-7/+7
|
* Rename uip_poll->devif_poll and uip_timer->devif_timerGregory Nutt2014-06-301-5/+5
|
* 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
|
* Add support for the LPCXpresso's RTC, ADC, DAC, Timer, PWM, and MCPWM. All ↵Gregory Nutt2014-06-237-4/+2508
| | | | form Max
* LPC17: Fix a critical error in GPDMA reported by LizhuoyiGregory Nutt2014-06-061-4/+13
|
* 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_
* Add serial method so that lower half driver can provide RX flow control ↵Gregory Nutt2014-05-081-0/+3
| | | | information. From Jussi Kivilinna
* LPC17xx: Prioritized interrupts are not supported (although hooks are ↵Gregory Nutt2014-04-192-23/+7
| | | | present to prioritize interrupts). Make LPC17 Ethernet default priority to be the system default, not the highest. If the unsupported feature is enabled, then at least it should do no harm
* Fix an error introduced in the last commitGregory Nutt2014-04-191-1/+2
|
* LPC17xx, TIVA, and Kinetis interrupt initialization: use the NVIC ICTR ↵Gregory Nutt2014-04-171-16/+35
| | | | register to determine how many interrupt lines/registers are supported by the MCU
* More trailing whilespace removalGregory Nutt2014-04-1319-64/+64
|
* Cosmetic changes for coding style; removal of dangling spaces at the end of ↵Gregory Nutt2014-04-131-24/+24
| | | | lines
* Make sure that there is one space after forGregory Nutt2014-04-121-1/+1
|
* Every ARM architecture must export g_instackbaseGregory Nutt2014-03-231-1/+2
|
* LPC17 USB Host: Minor clean-up after performing some regressin testingGregory Nutt2014-03-191-3/+4
|
* USB HID mouse: Fixes the basic data transfer model. Returned position data ↵Gregory Nutt2014-02-091-1/+1
| | | | is still bad
* LPC17 USB Host: Fix a compile error when USB debug is enabledGregory Nutt2014-02-091-1/+1
|
* Fix a compile error that crept into the LPC17xx USB host driverGregory Nutt2014-02-091-1/+1
|
* Add option to indicatet that data is retained in SDRAMGregory Nutt2014-01-281-0/+1
|
* rename up_led*() functions to board_led_*()Gregory Nutt2014-01-242-4/+4
|
* Fix error in last ARMv7-M up_disable_irq checkinGregory Nutt2014-01-151-18/+23
|
* Fix all Cortex-M3/4 implementations of up_disable_irq(). They were doing ↵Gregory Nutt2014-01-151-8/+33
| | | | nothing. Thanks to Manuel Stühn for the tip.
* Individual IRQs are not longer disabled on each interrupt. See ChangeLog ↵Gregory Nutt2014-01-151-7/+6
| | | | for detailed explanation