- Aug 18, 2014
-
-
Gregory Nutt authored
ARP: Add missing configuration option to select dumping of ARP packet headers. Move ARP dumping logic from arp_inout.c to its own file
-
Gregory Nutt authored
-
Gregory Nutt authored
sscanf(): NuttX libc tried to guess how many characters to parse, extracted them into a buffer, then ran strtol() on that buffer. That guess is often wrong. A better approach would be to call strtol() directly on the input data, using the endptr return value to determine how many characters to skip after parsing. From Kosma Moczek
-
Gregory Nutt authored
-
- Aug 17, 2014
-
-
Gregory Nutt authored
NSH link management now works! The last fix was to the Ethernet drivers: They cannot disable clocking to the Ethernet blok on ifdown. Otherwise, we cannot communicate with the PHY
-
Gregory Nutt authored
Change the way PHY interrupts work: disable automatically. Then we have to re-subscribe each time after the interrupt fires
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
- Aug 16, 2014
-
-
Gregory Nutt authored
-
Gregory Nutt authored
More of the PHY event notification logic change: Fix some compile errors when full feature is enabled; Add some missing ioctol logic
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
Modified to support the change to the network ioctl signature changes. Also add support for new ioctl to setup PHY event notifications.
-
Gregory Nutt authored
Finishes the ioctl definition to subscribe to PHY events. Revamp network ioctl signature to support arguments other than struct mii_ioctl_data.
-
Gregory Nutt authored
-
Gregory Nutt authored
Add support for an ioctl that can be used to notify an application when there is a change in the network status signalled by a PHY interrupt
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
- Aug 15, 2014
-
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
libc/time/lib_localtime.c is much closer to NuttX coding style. libc/time/private.h removed; incorporated into lib_localtime.c
-
Gregory Nutt authored
-
Gregory Nutt authored
When reading the system timer, don't read a struct timespec, convert it to a fake tick count, then back to a timespec. Remove CLOCK_ACTIVETIME.. it is non-standard, unused, and gets in the way of changes like this
-
Gregory Nutt authored
-