summaryrefslogtreecommitdiff
path: root/nuttx/configs/pic32mx7mmb
Commit message (Collapse)AuthorAgeFilesLines
* Change CONFIG_NET_RECEIVE_WONDOW to CONFIG_NET_ETH_TCP_RECVWNDO or ↵Gregory Nutt2014-11-161-1/+1
| | | | CONFIG_NET_SLIP_TCP_RECVWNDO in all defconfig files
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU is all configuration filesGregory Nutt2014-11-161-1/+1
|
* ARP: Add support for the case where there are multiple networks: One being ↵Gregory Nutt2014-11-141-0/+5
| | | | Etherenet and the other not (say slip or perhaps someday PPP). In that case, we need to suppress ARP-related operations on the SLIP/PPP interface only
* Remove CONFIG_MAX_TASK_ARGS from all Kconfigs and defconfigsGregory Nutt2014-11-121-1/+0
|
* Fix all yahoo links. From Magnus TemplingGregory Nutt2014-10-301-2/+2
|
* Remove non-standard, conditional syslog_enable(), instead only the required, ↵Gregory Nutt2014-10-091-1/+1
| | | | standard setlogmask()
* All USB MSC-related files under nuttx/configs changed to use the corrected ↵Gregory Nutt2014-10-081-22/+0
| | | | syslog interfaces
* All NSH-related files under nuttx/configs changed to use the corrected ↵Gregory Nutt2014-10-081-34/+22
| | | | syslog interfaces
* Rename CONFIG_EXAMPLES_NXCONSOLE to CONFIG_EXAMPLES_NXTERM; rename ↵Gregory Nutt2014-09-201-1/+1
| | | | CONFIG_NXWM_NXCONSOLE to CONFIG_NXWM_NXTERM
* Every defconfig file should now have a valid setting for CONFIG_WDOG_INTRESERVEGregory Nutt2014-09-031-0/+1
|
* Remove final traces of the 8015 from the NuttX source treeGregory Nutt2014-09-012-7/+0
|
* Rename kmalloc to kmm_malloc for consistencyGregory Nutt2014-08-311-2/+2
|
* Rename kfree to kmm_free for consistency with other naming conventionsGregory Nutt2014-08-311-1/+1
|
* Remove CONFIG_MM_MULTIHEAP. Non-multiheap operation is no longer supportedGregory Nutt2014-08-311-1/+0
|
* Change CONFIG_ADDRENV to CONFIG_ARCH_ADDRENV; change how it is selected -- ↵Gregory Nutt2014-08-241-1/+1
| | | | the architecure must first declare support
* Change all time conversions. Yech. New timer units in microseconds breaks ↵Gregory Nutt2014-08-071-4/+4
| | | | 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
* Change CONFIG_MSEC_PER_TICK to CONFIG_USEC_PER_TICK. This gives more ↵Gregory Nutt2014-08-071-1/+1
| | | | options for system timers in general, but more importantly, let's us realize higher resolution for the case of CONFIG_SCHED_TICKLESS=y -- of course, at the risk of some new interger overvflow problems
* Remove CONFIG_DISABLE_CLOCKGregory Nutt2014-08-071-1/+0
|
* Rename apps/examples/uip to apps/examples/webserverGregory Nutt2014-07-031-1/+1
|
* NET: Rename uiplib/UIPLIB to netlib/NETLIBGregory Nutt2014-07-021-1/+1
|
* TCP Read-Ahead: Convert to use I/O buffer chainsGregory Nutt2014-06-241-2/+5
|
* The alternate console device CONFIG_NSH_CONDEV must not be defined ↵Gregory Nutt2014-05-051-1/+1
| | | | unconditionally. This causes errors when using Telnet sessions. This was solved by adding CONFIG_NSH_ALTCONDEV: CONFIG_NSH_ALTCONDEV enables or disables the feature then, if enabled, CONFIG_NSH_CONDEV provides the alternative console device name
* Remove other traces of network interrupt prioritizationGregory Nutt2014-04-191-2/+0
|
* Undefine IRQPRIO in all configurations it should not be setGregory Nutt2014-04-162-5/+1
|
* More trailing whilespace removalGregory Nutt2014-04-138-38/+38
|
* Long needed clean up of DNS resolver for coding style and naming conventionsGregory Nutt2014-04-111-3/+3
|
* apps/system/usbmsc: Back out kludge that is no longer needed with the ↵Gregory Nutt2014-03-251-2/+0
| | | | recent fix to the USB MSC class
* configs/pic32-starterkit, pic32mx7mmb, stm3210e-eval, stm3220g-eval, and ↵Gregory Nutt2014-03-071-0/+23
| | | | stm3240g-eval: Refresh all configurations with the latest Kconfig files
* Removed the CONFIG_NUTTX_NEWCONFIG setting from every defconfig fileGregory Nutt2014-03-061-1/+0
|
* Make network buffering sizes consistent in all configurationsGregory Nutt2014-03-031-1/+1
|
* configs/pic32mx7mmb/nsh converted to use the kconfig-frontends toolsGregory Nutt2014-03-013-872/+987
|
* Removed almost all ostest configurationsGregory Nutt2014-02-286-1197/+0
|
* Many changes to reduce complaints from CppCheck. Several latent bugs fixes, ↵Gregory Nutt2014-02-101-3/+0
| | | | but probably some new typos introduced
* rename up_led*() functions to board_led_*()Gregory Nutt2014-01-241-4/+4
|
* Change how TCP read-ahead is selected to better integrate with TCP write ↵Gregory Nutt2014-01-132-0/+2
| | | | buffering
* Finishes separation of debug symbols and optimization selectionsGregory Nutt2013-12-202-4/+8
|
* Make naming consistent for USB host initialiation functionsGregory Nutt2013-11-291-1/+1
|
* Move apps/examples/cdcacm to apps/system/cdcacmGregory Nutt2013-09-254-17/+17
|
* Move apps/examples/usbmsc to apps/system/usbmscGregory Nutt2013-09-255-27/+27
|
* A consequence of previous change: Configurations that select a PHY also ↵Gregory Nutt2013-09-172-0/+2
| | | | need to set CONFIG_NETDEVICES or PHY configuration will be lost on the next reconfiguration
* Add prefex ETH0 to all PHY configurations to support multiple NICsGregory Nutt2013-09-173-9/+9
|
* Rename examples/usbstorage to examples/usbmsc. From CCTSAOGregory Nutt2013-09-054-6/+6
|
* Fix all occurrences of "the the" in documentation and commentsGregory Nutt2013-08-274-5/+5
|
* Separate wait() and enumerate() methods from struct usbhost_driver_s and ↵Gregory Nutt2013-08-131-5/+5
| | | | move to new interface, struct usbhost_connection_s. This is part of the necessary restructuring of the USB host interface to support multiple root hub ports.
* First of several changes needed to support multiple USB host root hubsGregory Nutt2013-08-121-2/+2
|
* Finally... renamed all CONFIG_DRAM_ settings to CONFIG_RAM_Gregory Nutt2013-07-263-8/+8
|
* Created new directories to hold SPI-related filesGregory Nutt2013-07-012-3/+3
|
* Remove CONFIG_XYZ_BUILTIN configurations, replace with the single ↵Gregory Nutt2013-06-124-15/+5
| | | | CONFIG_NSH_BUILTIN_APPS. Add SAM3/4 sam_periphclks.h which is just a header file that includes the right header file. Misc SAM3U-EK cleanup
* .dSYM only needs to be in the same .gitignore files as .exeGregory Nutt2013-05-301-1/+0
|
* Upate .gitignore files. Add .dSYM. Make sure / is present where needed. ↵Gregory Nutt2013-05-301-4/+3
| | | | Add some missing .gitignore files