Gregory Nutt
0f6aeb7cff
arch/arm/src/imxrt: Centralilze and standardize control of peripheral clocking. Add logic to initialize the DMAMUX.
2018-05-20 10:03:45 -06:00
Gregory Nutt
6529a5666e
Update README file
2018-05-19 17:32:56 -06:00
Alan Carvalho de Assis
cc1d68bd92
arch/arm/src/stm32: Include needed headers to get stm32_i2s.c compiled
...
configs/stm32f4discovery/include/board.h: Add SPI DMA pins definitions to get CS43L22 audio DAC working
configs/stm32f4discovery/audio: Add board configuration for CS43L22 audio example
configs/stm32f4discovery: Update README
2018-05-19 16:12:21 -06:00
Gregory Nutt
e4922ed9f0
Remove instructures to CD to tools/ before running ./configure.sh
...
Squashed commit of the following:
configs/*/README.txt: Replace each occurrence of './configure.sh' with 'tools/configure.sh'
configs/*/README.txt: Remove 'cd ..' after each './configure.sh'
configs/*/README.txt: Remove 'cd -' after each './configure.sh'
configs/*/README.txt: Remove 'cd tools' before each './configure.sh'
configs/README.txt: Remove instruction to CD tools/ before running configure.sh.
2018-05-09 11:41:46 -06:00
Gregory Nutt
17cc0b9bfe
arch/arm/src/imxrt: Minor reparitioning to account for the fact that the GPIO5 base address is not contiguous with the GPIO1-4 base addresses.
2018-04-25 14:54:14 -06:00
Gregory Nutt
cfc5f86862
net/udp: Minor update from review of 091e3f732e
. In connect(), AF_UNSPEC is used to disconnect UDP socket. However, initial commit lacked logic to mark the socket as disconnected.
2018-04-25 10:13:59 -06:00
Gregory Nutt
5fae6f8da6
Update README
2018-04-24 11:05:34 -06:00
Gregory Nutt
9b83737821
drivers/wireless/bluetooth: Partition bt_uart.c adding bt_uart.h and bt_uart_generic.c. This will now permit adding HCI UART drivers that have custom initialization requirements.. such as parts the need to download a configuration file to the HCI UART before they are usable.
2018-04-19 17:48:04 -06:00
Gregory Nutt
27f624d881
drivers/wireless/bluetooth: Default BAUD must be 115200, Fix logic in Rx callback, Rx callback must execute on work queue. Now sends and receives one command and response. But hangs on the next.
2018-04-17 13:07:28 -06:00
Gregory Nutt
603efe6fb5
arch/arm/src/stm32 and configs/stm32f4discovery: Some feeble attempts to communicate with the BT860. Not much progress yet.
2018-04-16 15:24:28 -06:00
Gregory Nutt
fa287e8863
Various fixes/changes from intial testing of the HCI UART on the STM32F4-Discovery board. Re-organized how the Blutetooth network driver is initialized. Added lots of new debug output. Add a new STM32 F4 Discovery configuration for testing the HCI UART. Various fixes to get through initialization (still does not).
2018-04-14 09:23:08 -06:00
Gregory Nutt
8b4b61f140
fs/cromfs: Fix a error in reading partial compressed blocks. The LZF decompressor does not support that operation. Instead we have to decompress full block into a temporary buffer and copy out the parts that we need. To compensate for the performance hit, a caching mechanism was added so that we do not have to read the same block repeatedly. Unrelated: Also updates some README files.
2018-03-24 11:30:35 -06:00
Gregory Nutt
82baae5101
Makefile.unix: This seems to eliminate the spuriouis errors reported by 'make savedefconfig'
2018-03-07 13:37:53 -06:00
Gregory Nutt
4d4029afeb
Update README files
2017-11-28 14:43:36 -06:00
Gregory Nutt
cccc86da09
This change adds support for semi-standard IPPROTO_ICMP AF_INET datagram sockets. This replaces the old ad hoc, nonstandard way of implementing ping with a more standard, socket interface.
...
Squashed commit of the following:
net/icmp: Finishes off icmp_recvfrom().
net/icmp: Add readahead support for IPPROTO_ICMP sockets.
net/icmp: Add poll() support for IPPROTO_ICMP sockets.
net/icmp: Add a connection structure for IPPROTO_ICMP sockets.
net/icmp: Implements sendto for the IPPROTO_ICMP socket.
net/icmp: Move icmp_sendto() and icmp_recvfrom() to separate files. They are likely to be complex (when they are implemented).
net/icmp: Hook IPPROTO_ICMP sockets into network. Fix some naming collisions. Still missing basic ICMP send/receive logic.
configs: apps/system/ping current need poll() enabled.
configs: All defconfig files that use to enable low-level support must now enabled CONFIG_SYSTEM_PING.
net/icmp: Adds basic build framework to support IPPROTO_ICMP sockets.
2017-10-23 08:45:12 -06:00
Gregory Nutt
413cfdfa75
Update some README files.
2017-10-15 16:15:05 -06:00
Alan Carvalho de Assis
62e9c930bb
configs/stm32f4discovery: Add a USB MSC configuration
2017-10-13 10:02:22 -06:00
Gregory Nutt
d2799f0b4e
Update a README and some comments
2017-09-23 08:49:58 -06:00
Gregory Nutt
337ba9d7cc
configs/stm32f4discovery: Update README. Add summary of differences with the newest STM32F407G-DISC1 part. Remove a lot of old discussion that is really no longer helpful.
2017-09-18 11:47:25 -06:00
Gregory Nutt
dc8f3778a9
drivers/sensors: Fix more naming of configurations to be compliant for two more drivers. Still a few more to go.
2017-08-24 10:26:53 -06:00
Gregory Nutt
f3f522514e
libm: Eliminate a warning from lgamma(); Update some comments; Add some logic to handle broadcast better -- Currently conditioned out because it does not work.
2017-08-08 12:08:43 -06:00
Alan Carvalho de Assis
e748a43f99
STM32F4-Discovery: Add a configuration for testing libc++
2017-08-08 10:38:42 -06:00
Gregory Nutt
1bddccbc3c
Update some board README files
2017-07-07 09:04:09 -06:00
Gregory Nutt
9aac1dd44d
configs: Remove all setenv.bat files. Remove all references to setenv.sh and setenv.bat from all config README files.
2017-04-26 10:12:13 -06:00
Alan Carvalho de Assis
7a12cc3e56
STM32F4 Discovery: Update stm32f4discovery README.txt to instruct how to use QE
2017-02-24 07:10:07 -06:00
Gregory Nutt
3dbdb3bb31
CONFIG_SDIO_DMA: Was been defined in several low-level architecute Kconfig files, but used at the highest levels in the code. Both are bad and both are fixed with this commit
2017-01-31 11:52:00 -06:00
Gregory Nutt
9ac00a355f
Add capabilities() method to SDIO interface. Remove CONFIG_SDIO_WIDTH_D1_ONLY. That should not be a global propertie, but rather a capability/limitation of single slot when there may be multiple slots.
2017-01-31 09:16:01 -06:00
Gregory Nutt
a0711b1c19
configs: All QE encoder files. Last change made timer hard-coded to 3. Make configurable.
2016-11-22 06:41:46 -06:00
Gregory Nutt
8710b56670
STM32F4 Discovery: Add a pseudo-terminal example
2016-07-16 11:30:43 -06:00
Gregory Nutt
7c34a77b54
Move apps/system/usbmonitor to nuttx/drivers/usbmonitor
2016-06-30 12:24:33 -06:00
Gregory Nutt
2b445ddccc
Remove lowsyslog(). The new syslog() includes all of the functionality of lowsyslog(). No longer any need for two interfaces.
2016-06-20 08:57:08 -06:00
Gregory Nutt
5b2aa7bf99
Remove all traces of CONFIG_SYSLOG
2016-06-19 13:59:43 -06:00
Gregory Nutt
03cbe671ad
Centralize definitions associated with CONFIG_DEBUG_PWM
2016-06-15 17:23:56 -06:00
Gregory Nutt
63b1eb09e6
Centralize definitions associated with CONFIG_DEBUG_CAN
2016-06-15 15:45:27 -06:00
Gregory Nutt
1cdc746726
Rename CONFIG_DEBUG to CONFIG_DEBUG_FEATURES
2016-06-11 14:14:08 -06:00
Gregory Nutt
3e0efd7279
Fix all URLs to the NuttX repository
2016-04-06 17:56:40 -06:00
Gregory Nutt
6f883fb7ea
Update README:
2016-02-23 07:26:25 -06:00
Gregory Nutt
4c30378d94
Update README
2016-02-22 09:00:51 -06:00
Gregory Nutt
e46cd30c14
Change use of mknulldeps.sh to mkwindeps.sh
2016-01-09 14:13:44 -06:00
Gregory Nutt
d1ece2c59f
Fix some bad inclusions of files with internal in the name
2015-12-29 18:18:20 -06:00
Gregory Nutt
79ef94a938
STM32F4-Discovery: Add support for the NSH network initialization thread in the netnsh configuration. Attempted to enable the networking monitor as well, but it turns out that the PHY interrupt is not supported with the STM32F4-DISBB base board
2015-09-28 10:58:47 -06:00
Gregory Nutt
75595ddfef
Remove refereneces to DNSCLIENT IPv4/IPv6
2015-07-12 14:13:18 -06:00
Gregory Nutt
58f21e7621
Fix a typo in a README file
2015-07-11 08:16:07 -06:00
Gregory Nutt
42f69ba42f
Rename CONFIG_NETUTILS_DNS* to CONFIG_NETDB_DNS* to reflect the movement of the DNS server from apps/netutils to nuttx/libc/netdb
2015-07-10 12:09:58 -06:00
Gregory Nutt
9e99cfa4e0
Correct many bitbucket.org URLs
2015-06-28 09:14:52 -06:00
Gregory Nutt
7214e52fb2
Fix references to the no-longer-existent misc/ directory in comments, README files, and documentation
2015-06-28 08:08:57 -06:00
Gregory Nutt
46bd0bc307
This cleans up most of the remaining SourceForge references
2015-06-26 18:13:20 -06:00
Gregory Nutt
1787506332
Stm32 F4 Discovery; Refrsh ELF configuration; update README.txt
2015-05-29 11:42:40 -06:00
Gregory Nutt
0dbf579aa8
Fix numerous typos in configuration variable names. Tracked down by Alan Carvalho de Assis
2015-05-23 17:08:35 -06:00
Gregory Nutt
1d881c2d35
STM32F4-Discovery: Add another missing configuration; fix names of configurations
2015-04-30 13:02:38 -06:00