Gregory Nutt
fafc56ae80
Merged in ziggurat29/nuttx/stm32l4_i2c_lcd_mjkdz_001 (pull request #28 )
...
complete logic in 'create stack' and 'use stack' to support stack coloration. Fix some booboos breaking compatibility with TLS in libc.
2016-05-25 13:22:03 -06:00
Gregory Nutt
d89eefc6a5
Refresh all STM32 configurations
2016-05-25 12:39:28 -06:00
ziggurat29
397d228b2a
let nucleo (stm32l4) support proc fs for info useful for debug
2016-05-25 13:11:43 -05:00
ziggurat29
0252909fc9
altered pin defs for I2C pins; these needed to be specified as open-drain (otherwise they are push-pull)
2016-05-25 13:09:52 -05:00
Gregory Nutt
9ec104834a
Remove CONFIG_USARTn_ISUART
2016-05-25 11:21:48 -06:00
Gregory Nutt
c089a2f241
Rename CONFIG_ARCH_HAVE_OTHER_UART to CONFIG_OTHER_UART_SERIALDRIVER
2016-05-25 10:48:33 -06:00
Gregory Nutt
e2e6ce3f1b
Rename CONFIG_ARCH_HAVE_SCIn to CONFIG_SCIn_SERIALDRIVER
2016-05-25 10:46:55 -06:00
Gregory Nutt
2a87741e72
Rename CONFIG_ARCH_HAVE_UARTn to CONFIG_UARTn_SERIALDRIVER
2016-05-25 10:45:01 -06:00
Gregory Nutt
249a2e48e5
Rename CONFIG_ARCH_HAVE_USARTn to CONFIG_USARTn_SERIALDRIVER
2016-05-25 10:39:23 -06:00
Paul A. Patience
3ca1a41626
Update Nucleo F303RE and STM32F4Discovery uavcan configurations
2016-05-25 09:39:42 -04:00
Lok Tep
4c96755219
Merge remote-tracking branch 'origin/master'
2016-05-24 23:23:57 +02:00
Gregory Nutt
4b3e710af6
Add an argument to board_app_initialize()
2016-05-24 10:51:22 -06:00
unknown
c89a5494b8
spi, copy
2016-05-24 16:57:39 +01:00
Gregory Nutt
c019c270d5
Tiva boards: Fix a naming collision, rename board-specific function from tiva_timer_initialize() to tiva_timer_configure() to remove conflict
2016-05-23 08:26:46 -06:00
pkolesnikov
7630b9db5d
i2c copy
2016-05-23 15:56:56 +02:00
Gregory Nutt
1bb9c1fa39
Update README
2016-05-23 07:55:25 -06:00
pkolesnikov
5e8d2347ac
copy nucleo-144 to stm32f746-ws
2016-05-23 15:05:56 +02:00
Gregory Nutt
34ce000c50
Sabre-6quad: Add an SMP configuration; Enable procfs in both configurations
2016-05-22 16:17:10 -06:00
Gregory Nutt
c7979ad49c
Update README and ChangeLog
2016-05-22 15:17:03 -06:00
Gregory Nutt
5e5b6d677d
Update README and ChangeLog
2016-05-22 15:05:41 -06:00
Gregory Nutt
9bd8070b34
Review of last PR
2016-05-20 18:12:05 -06:00
Gregory Nutt
56616f99d3
Forgot to add file before last commit
2016-05-20 18:09:12 -06:00
Gregory Nutt
e47714322e
Merged in K-man23/nuttx/stm32f411e-disco (pull request #25 )
...
Add basic configuration for stm32f411e-disco board with STM32F411VE chip
2016-05-20 17:54:07 -06:00
Konstantin Berezenko
a2253cdd3e
Add basic configuration for stm32f411e-disco board with STM32F411VE chip
2016-05-20 16:38:25 -07:00
Steve
bd3ef36eda
SUMMARY
...
-------
This patch enhances networking support for the simulation under Linux.
Includes updated support for Linux TUN/TAP, and the addition of support for
Linux bridge devices.
CHANGES
-------
o Check to see if the d_txavail callback is present before calling it in
the arp send code. This prevents a segfault when simulating the telnetd
daemon with arp send enabled.
o Adjust the simulation's netdriver_loop() so it will detect and respond to
ARP requests.
o Do not attempt to take the tap device's hardware address for use by the
simulation. That hardware address belongs to the host end of the link,
not the simulation end. Generate a randomized MAC address instead.
o Do not assign an IP address to the interface on the host side of the TAP
link.
+ Provide two modes: "host route" and "bridge".
+ In host route mode, maintain a host route that points any traffic for the
simulation's IP address to the tap device. In this mode, so long as the
simulation's IP is a free address in the same subnet as the host, no
additional configuration will be required to talk to it from the host.
Note that address changes are handled automatically if they follow the
rule of if-down/set-address/if-up, which everything seems to.
+ In bridge mode, add the tap device to the specified bridge instance. See
configs/sim/NETWORK-LINUX.txt for information and usage examples. This
enables much more flexible configurations (with fewer headaches), such as
running multiple simulations on a single host, all of which can access
the network the host is connected to.
o Refresh configurations in configs/sim where CONFIG_NET=y. They default
to "host route" mode.
o Add configs/sim/NETWORK-LINUX.txt
CAVEATS
-------
- The MAC address generation code is extremely simplistic, and does not
check for potential conflicts on the network. Probably not an issue, but
something to be aware of.
- I was careful to leave it in a state where Cygwin/pcap should still work,
but I don't have a Windows environment to test in. This should be
checked.
- I don't know if this was ever intended to work with OS X. I didn't even
try to test it there.
NOTES
-----
- Was able to get telnetd working and simulate nsh over telnet, but only so
long as listen backlogs were disabled.
There appears to be a bug in the backlog code where sockets are being
returned in SYN_RCVD state instead of waiting until they're ESTABLISHED;
if you perform an immediate send after accepting the connection, it will
confuse the stack and the send will hang; additionally, the connection
will never reach ESTABLISHED state.
Can be worked around by adding a sleep(1) after the accept in telnetd. I
don't have the necessary knowledge of the IP stack to know what the
correct fix is.
2016-05-20 17:36:14 -06:00
Alan Carvalho de Assisis
6c852faebb
stm32f103-minimum: Add instructions for using the secret 128KB FLASH
2016-05-20 17:14:19 -06:00
Gregory Nutt
5c55846d2d
Minor README file update
2016-05-20 17:11:49 -06:00
Gregory Nutt
356692d70e
SMP: Need to enable FPU on other CPUs as well
2016-05-20 13:35:58 -06:00
Gregory Nutt
07acd5327a
SMP: Clean CPU0 D-Cache before starting new CPU; Invalidate D-Cache when new CPU started.
2016-05-20 12:39:02 -06:00
Gregory Nutt
eeb4a5c230
Remove comments blocks before empty file sections
2016-05-20 07:46:10 -06:00
Gregory Nutt
2d3e653996
Mostly costmetic changes from review of last PR
2016-05-20 07:44:56 -06:00
Mark Olsson
a985e289ec
Fixed User Button config for Nucleo-144 board family
2016-05-20 15:22:47 +02:00
Mark Olsson
1f869e5879
Added new configuration (evalos) for the Nucleo-144 board family.
...
This new configuration will showcase all the features of the boards, so is a good way to easily test out a new board. This can be added to all boards in the future.
2016-05-20 14:55:30 +02:00
Mark Olsson
02e43ab1b3
Adds support for the 3 user LEDs on the Nucleo-144 board family
...
Extra: procfs support doesn't work, so the code for this has been removed from AppInitialize
2016-05-20 13:45:16 +02:00
Gregory Nutt
7f7d4e664c
Completely trivial changes from review of last PR
2016-05-19 14:09:00 -06:00
Gregory Nutt
34c0c7b54c
Another update to README
2016-05-19 10:20:40 -06:00
Gregory Nutt
8af8d9fb05
Update README
2016-05-19 10:03:51 -06:00
Gregory Nutt
4c837d6e86
Update README
2016-05-19 07:59:31 -06:00
Gregory Nutt
66233060e2
Update README file
2016-05-19 07:25:52 -06:00
Gregory Nutt
8ace1e3be2
Remove all implementatinos of up_wdginitialize(). It is no longer used.
2016-05-18 19:48:42 -06:00
Gregory Nutt
1d2ee34131
SAM WDT: Rename up_wdginitialize() functions to something more appropriate for the internal OS interface.
2016-05-18 19:47:41 -06:00
Gregory Nutt
161bf368c1
Remove schematic... wrong board
2016-05-18 15:56:34 -06:00
Gregory Nutt
5d574549bd
stm32f103-minimum: Add schematic; remove unused watchdog driver logic
2016-05-18 15:37:42 -06:00
Gregory Nutt
67756f1f70
Refresh configurations
2016-05-18 13:49:38 -06:00
Alan Carvalho de Assis
104b695645
configs: Add support for the generic STM32F103CBT6 Minimum Board
2016-05-18 13:33:17 -06:00
Gregory Nutt
f7fd8c6539
Trivial typo fix
2016-05-18 11:56:19 -06:00
Gregory Nutt
f454b38d6e
ARMv7-A SMP: Allow CONFIG_SMP_NCPUS=1 for testing purposes
2016-05-18 09:17:02 -06:00
Gregory Nutt
3d87005e5a
Fix some compilation issues when certain combinations of debug options are selected.
2016-05-17 12:06:32 -06:00
Gregory Nutt
8bd57a7fbc
Sabre-6Quad: Fix sense of LED discrete output. It appears that a high value illuminates the LED.
2016-05-17 10:08:44 -06:00
Gregory Nutt
b416f6cc1b
i.MX6: Calibrate delay loop
2016-05-17 08:22:38 -06:00
Gregory Nutt
5d44fd6a00
i.MX6: LEDs were not working because board_autoled_initialize() was not being called
2016-05-17 08:10:49 -06:00
Gregory Nutt
4c08492c0f
i.MX6: Fix a bit setting in the timer configuration
2016-05-17 07:21:18 -06:00
Aleksandr Vyhovanec
80a9357b6f
wfi.mac should be copied into the directory with the IAR project. Then set it to "Options -> Debugger -> Setup macro file(s)". This will allow debugging via JTAG when calling the WFI instruction.
2016-05-17 06:45:00 -06:00
Gregory Nutt
e6728bac29
Cortex-A9 GIC: Add an interface to set interrupt edge/level trigger
2016-05-16 14:42:55 -06:00
Gregory Nutt
4feeb0c2b4
Cortex-A9 GIC: Some fixes that I don't fully understand but do indeed give me serial interrupts
2016-05-16 12:50:35 -06:00
Gregory Nutt
a0cdbcb58f
Update README
2016-05-16 08:44:18 -06:00
ziggurat29
aa51ace46d
initial code for USB OTG support in STM32L4. Builds, but needs debugging.
2016-05-14 08:15:48 -05:00
Gregory Nutt
a1e066d6a5
Merge remote-tracking branch 'origin/master' into nucleo-144
2016-05-13 11:51:22 -06:00
Gregory Nutt
7c52b8ddae
Add a .noinit section to all ARMv7-A linker scripts
2016-05-13 08:05:21 -06:00
Gregory Nutt
99e695398c
Rename up_boot to arm_boot
2016-05-12 13:42:49 -06:00
Gregory Nutt
365df152c5
Remove TABs and while space from end of line in README file
2016-05-12 12:26:56 -06:00
Gregory Nutt
61f6915898
Update README files
2016-05-12 10:01:43 -06:00
David Sidrane
d03b0f5188
README.txt file for the nucleo-144
2016-05-12 09:56:32 -06:00
Gregory Nutt
abc0481a57
Port for the Nucleo-144 board with the STM32F476ZG MCU. From Kconstantin Berezenko.
2016-05-12 09:47:54 -06:00
Gregory Nutt
1ac3d2128a
Trivial fix to comment
2016-05-11 17:20:14 -06:00
Gregory Nutt
e523c93391
Several Makefiles: Add .PHONY definitions to prevent 'clean up to date' message weirdness.
2016-05-10 15:44:06 -06:00
Gregory Nutt
5e9b1c615f
Merged in paulpatience/nuttx/userleds (pull request #13 )
...
userleds: Don't select ARCH_LEDS with BOARD_CUSTOM_LEDS, otherwise we can't use the board_userled* functions
2016-05-08 01:37:31 -06:00
Gregory Nutt
0143b3869a
Merged in ziggurat29/nuttx/stm32l4_update_rtc_impl (pull request #14 )
...
Stm32l4_update_rtc_impl
2016-05-08 01:24:09 -06:00
ziggurat29
523591736f
trivial; enable the 'alarms' example app in the STL32L4-disco config, since it is now working
2016-05-07 12:24:15 -05:00
ziggurat29
1e5910a99d
update nucleo l476 config and code to support the RTC and the alarms functionality
2016-05-07 12:03:18 -05:00
Paul A. Patience
dfff78d7ab
userleds: Don't select ARCH_LEDS with BOARD_CUSTOM_LEDS, otherwise we can't use the board_userled* functions
2016-05-05 12:29:43 -04:00
Gregory Nutt
c31ec6bdad
Merged in paulpatience/nuttx/uavcan (pull request #12 )
...
UAVCAN: Update version
2016-05-05 03:23:26 -06:00
Paul A. Patience
e6e2552a12
UAVCAN: Update version
2016-05-03 17:18:57 -04:00
ziggurat29
dedcbeba2e
add unique id function to arch, modded board to support unique id boardctl
2016-05-03 11:09:23 -05:00
Gregory Nutt
a95e426d35
Costmetic changes from last PR
2016-04-30 09:04:38 -06:00
ziggurat29
2fe0565437
added support for HSE and MSI clocks, and auto trim of MSI to LSE (needed for USB).
2016-04-29 22:13:32 -05:00
Gregory Nutt
61fbef5727
Costmetic changes from review or PR
2016-04-28 02:39:27 -06:00
ziggurat29
97ea667a7a
refresh defconfig
2016-04-27 19:51:49 -05:00
ziggurat29
2bfb326994
add board ioctls for allowing user application to cause qspi memory mapped mode to be engaged and disengaged. Also partitioned qspi flash for filesystem and other purposes (eventually xip).
2016-04-27 19:36:43 -05:00
Gregory Nutt
2d3529294e
Merged in ziggurat29/nuttx/stm32l4_qspi_005 (pull request #6 )
...
QSPI DMA support in STM32L4, and DMA fixes...
2016-04-24 16:53:33 -06:00
ziggurat29
1baf943dca
update stm32l4 disco board to reflect QSPI DMA support; refresh defconfig
2016-04-24 16:29:52 -05:00
Gregory Nutt
422769e859
Update README. Improve some debug output.
2016-04-23 14:27:32 -06:00
Gregory Nutt
d4ac277df8
Mostly costmetic updates to comments, README
2016-04-23 13:26:52 -06:00
Gregory Nutt
f3499b173a
VNC: Fix a memory clobblering bug
2016-04-23 10:21:49 -06:00
Gregory Nutt
fab5a71fe5
Add a VNC NxWM configuration to support further VNC testing
2016-04-23 08:21:15 -06:00
Gregory Nutt
8c1534e3ed
VNC: Finish initializing the VNC server once we have the NX handle
2016-04-22 13:39:35 -06:00
Gregory Nutt
3527a5a5d7
Update README.txt
2016-04-22 10:13:53 -06:00
Gregory Nutt
2a928cbdbe
VNC: Verify RGB8 operation; samv71-xult: VNC configuration now uses RGB8 by defualt
2016-04-22 08:57:42 -06:00
Marco Krahl
3537f93cfb
stm32f429i-disco: Set default spi clock frequency for display initializing
2016-04-22 07:28:21 -06:00
Gregory Nutt
ceac1dcaee
Update README
2016-04-21 16:15:56 -06:00
Gregory Nutt
c25a9b4833
Update a configuration
2016-04-21 13:19:15 -06:00
Gregory Nutt
7134652fea
VNC: Fixes from debug. One issues is that VNC client is changing color formats after starting. That is now handled.
2016-04-20 09:47:02 -06:00
Gregory Nutt
65f21d0edb
VNC: More updates from testing. There are issues with high rate, large TCP transfers.
2016-04-19 15:39:58 -06:00
Gregory Nutt
f3515a242d
VNC: Implemented 3.8 protocol. Seems to be required by my RealVNC client
2016-04-19 08:33:16 -06:00
Gregory Nutt
5997373b55
VNC: Fix some obvious logic and coding errors found in early testing
2016-04-18 15:34:39 -06:00
Gregory Nutt
628dd9b181
SAMV71-Xult: Add a configuration that will be used to test VNC
2016-04-18 12:25:23 -06:00
Gregory Nutt
ca6f822417
File missed in last commit
2016-04-18 06:52:00 -06:00
Gregory Nutt
26ba3a2b96
Cosmetic changes from review of last PR
2016-04-18 06:50:45 -06:00
Gregory Nutt
c5cce5603e
Merged in ziggurat29/nuttx/stm32l4_qspi_002 (pull request #2 )
...
basic support for QSPI in STM32L4; verified via 'examples/media'
2016-04-18 06:30:28 -06:00
ziggurat29
499fea73ec
basic support for QSPI in STM32L4; verified via 'examples/media'
2016-04-17 21:08:25 -05:00
Gregory Nutt
aa64214877
FB: Add a display number to the framebuffer planeinfo structure
2016-04-17 10:08:27 -06:00
Alan Carvalho de Assis
de734ba310
configs/stm32f4discovery: Integrate BH1750FVI driver in the STM32F4Discovery board
2016-04-15 08:20:33 -06:00
Gregory Nutt
46846c0c24
Framebuffer driver: Add a display number to each interface in order to support multiple displays
2016-04-14 12:23:15 -06:00
Gregory Nutt
3b245d6092
SAMV7-XULT: Refresh configurations
2016-04-14 08:00:43 -06:00
Gregory Nutt
91686e671c
configs/nucleus2g: Remove this board from the configs/ directory. A snapshot is still available in the Obsoleted repository
2016-04-12 12:19:30 -06:00
Gregory Nutt
b909099f09
Update some README files
2016-04-10 09:12:00 -06:00
Gregory Nutt
3228d32938
Correct permmisions on executable scripts
2016-04-10 09:11:59 -06:00
Gregory Nutt
51bed92fc2
STM32F429i-disco: Add uVision GCC IDE project files
2016-04-10 09:11:56 -06:00
Kha Vo
7689de230b
STM32F29i-disco: Add uVision GCC IDE template files for the STM32F429i Discovery
2016-04-10 09:11:56 -06:00
Kha Vo
5912c840cb
IAR/uVision template and ICF files
2016-04-10 09:11:55 -06:00
Gregory Nutt
4449b95fda
Add references to new README files
2016-04-10 09:11:54 -06:00
Kha Vo
db70124478
STM3220G-EVAL: Update README and add project files for building with the IAR or uVision IDEs.
2016-04-10 09:11:53 -06:00
Gregory Nutt
1df1148bae
STM3220G-EVAL: Update README.txt file describing how to build using the IAR toolchain
2016-04-10 09:11:52 -06:00
Gregory Nutt
7337e748de
Merge in configs/ submodule
2016-04-10 07:57:59 -06:00
Gregory Nutt
a031fc1a88
Remove submodules
2016-04-09 12:36:05 -06:00
Gregory Nutt
8b848504c3
Fix all URLs to the NuttX repository
2016-04-06 18:04:06 -06:00
Gregory Nutt
6e24c287f6
Merge branch 'master' of bitbucket.org:nuttx/boards into HEAD
2016-04-06 17:59:30 -06:00
Gregory Nutt
3e0efd7279
Fix all URLs to the NuttX repository
2016-04-06 17:56:40 -06:00
Gregory Nutt
85574ad023
Olimex STM32 H407: Handle initialization errors consistently
2016-04-05 17:40:51 -06:00
Gregory Nutt
f07be860dd
Olimex STM32 H407: Add basic infrastructure for MMC/Sd support
2016-04-05 17:15:50 -06:00
Gregory Nutt
7bca472334
Olimex-STM32_H407: Move board initialization logic from stm32_appinit.c to stm32_bringup.c; Add support for the RTC driver
2016-04-05 09:17:54 -06:00
Gregory Nutt
f4920eae36
Olimex-STM32-H407: Pick up a few changes from PR38. Most of those changes are, however, not appropriate or not incompliance with NuttX naming or coding style.
2016-04-05 08:04:52 -06:00
Gregory Nutt
4fbd79d1a8
rtc.h: Needs to include signal.h and time.h to avoid compile errors in certain contexts
2016-04-03 13:35:01 -06:00
Gregory Nutt
379a61621c
STM3240G-EVAL and VIEWTOOL-STM32F107: Refresh configurations; add support to register the RTC driver
2016-04-03 13:34:04 -06:00
Gregory Nutt
1767b21d3c
Update submodules
2016-04-02 17:42:00 -06:00
Gregory Nutt
f6e514db1f
Too many conditions on compilation
2016-04-02 14:51:36 -06:00
Gregory Nutt
ab3f9b764e
Update ChangeLog
2016-04-02 08:16:28 -06:00
Gregory Nutt
99df0f459d
All STM32 configurations need to set CONFIG_ARM_TOOLCHAIN_GNU=y
2016-04-02 07:21:25 -06:00
Gregory Nutt
a6fff34ec6
Update TODO list
2016-03-31 18:02:51 -06:00
Gregory Nutt
4791b1daf3
Sabre-6Quad: Update some comments
2016-03-31 17:26:33 -06:00
Frank Benkert
0d3a7f4085
SAMV71-XULT: make usb composite configuration compiling again
2016-03-31 14:14:36 -06:00
Gregory Nutt
af027f2a18
Update submodules
2016-03-31 13:37:04 -06:00
Gregory Nutt
01933335a9
Update README
2016-03-31 13:36:47 -06:00
Gregory Nutt
c573556a7b
Update README
2016-03-31 07:26:15 -06:00
Gregory Nutt
bbbb615c31
Remove references to VSN from README; update ChangeLog
2016-03-30 18:13:45 -06:00
Gregory Nutt
cd0a7c7294
Remove the VSN configuration
2016-03-30 17:58:52 -06:00
Gregory Nutt
ad61b7ab3e
Remove all references to CONFIG_SYSTEM_SDCARD
2016-03-30 17:53:19 -06:00
Gregory Nutt
4033d92593
Merged in ziggurat29/boards/stm32l4_rtc_001 (pull request #37 )
...
Stm32l4_rtc_001
2016-03-30 14:36:15 -06:00
Sebastien Lorquet
fdea7aee74
Enable SAI1PLL configuration on Nucleo-L476 for use with RNG
2016-03-30 14:28:50 -06:00
ziggurat29
f794dab9c2
turn off RTC debug in defconfig; noisy
2016-03-30 15:24:53 -05:00
Gregory Nutt
f48fe4671c
Sabre-6Quad: One, not two, GB of SDRAM
2016-03-30 14:09:48 -06:00
ziggurat29
41297a47a5
changes to reflect availability of RTC in default configuration
2016-03-30 14:48:36 -05:00
Gregory Nutt
35ab1697cd
CONFIG_DEV_RANDOM depends on CONFIG_ARCH_HAVE_RNG which is selected with MCU-specific RNG H/W is enabled. So correct default is y; you almost certainly want /dev/random as well.
2016-03-30 07:58:09 -06:00
Gregory Nutt
8f3d140c1b
Sabre-6Quaqd: Fix DRAM size, 2GB not 2MB
2016-03-29 17:17:31 -06:00
Gregory Nutt
f3cf4a7586
Sabre-6Quad: Corre some RAM addresses in NSH configuration; Update README file.
2016-03-29 15:36:31 -06:00
Gregory Nutt
9fc8b8c696
Update README
2016-03-29 09:53:24 -06:00
Gregory Nutt
751e85eade
tools/: Scripts should use /bin/bash vs. /bin/sh
2016-03-28 18:18:30 -06:00
Gregory Nutt
d0036e5ff1
Update README
2016-03-28 18:01:22 -06:00
Gregory Nutt
8c6d42843d
Update README
2016-03-28 17:08:21 -06:00
Gregory Nutt
fbaee9db34
PM: Some cosmetic updates
2016-03-27 13:37:28 -06:00
Gregory Nutt
909d264dea
Misc. trivial changes from review of last PR
2016-03-27 13:16:15 -06:00
Gregory Nutt
bd70ad404b
Merged in ziggurat29/boards/stm32l4_lse (pull request #35 )
...
minor; changes to clocking config to specify the activation of LSE
2016-03-27 13:07:20 -06:00
Gregory Nutt
54dbec248e
PM: Add domain to all PM interfaces. Internal PM data structures now handle multiple PM domains.
2016-03-27 13:03:47 -06:00
Gregory Nutt
76c4b11a6b
PM: Add domain to all PM interfaces. Internal PM data structures now handle multiple PM domains.
2016-03-27 13:02:21 -06:00
Gregory Nutt
dea4fe5d90
PM: Add activity domain to all PM callbacks
2016-03-27 11:19:39 -06:00
Gregory Nutt
0e8ff50d18
PM: Add activity domain to all PM callbacks
2016-03-27 11:18:44 -06:00
ziggurat29
0629b65e38
minor; changes to clocking config to specify the activation of LSE
2016-03-27 12:13:19 -05:00
Gregory Nutt
970822b351
Add missing PM configuratin options to Kconfig file
2016-03-27 10:18:20 -06:00
Gregory Nutt
83aa1bebf3
Oops... left garbage in a file
2016-03-26 17:36:59 -06:00
Gregory Nutt
d580b70a71
Minor updates to TODO list
2016-03-26 17:26:47 -06:00
Gregory Nutt
a557f454b2
spark: Move board_usbmsc_intiialize() to a separate file
2016-03-26 17:25:42 -06:00
Gregory Nutt
8523e17f52
Prep for 7.15 release
2016-03-26 12:16:14 -06:00
Gregory Nutt
fd2048ac0b
Refresh some configurations
2016-03-26 12:15:01 -06:00
Gregory Nutt
93657a2daf
Missing header file inclusion
2016-03-25 18:20:24 -06:00
Gregory Nutt
0b78c9dbe7
Missing header file inclusion
2016-03-25 18:18:58 -06:00
Gregory Nutt
27a3fcb3eb
Merge branch 'master' of https://bitbucket.org/nuttx/boards
2016-03-25 18:11:43 -06:00
Gregory Nutt
0d2942ba82
map configuration needs and stm32_appinit.c file
2016-03-25 18:10:23 -06:00
Gregory Nutt
04d1b03abf
Merged in ziggurat29/boards/nucleomod-20160325a (pull request #34 )
...
minor; clocking changes to stm32l4 nucleo to support CLK48 for RNG functionality (and any others)
2016-03-25 17:54:29 -06:00
ziggurat29
a65503101e
minor; clocking changes to stm32l4 nucleo to support CLK48 for RNG functionality (and any others)
2016-03-25 18:44:32 -05:00
Gregory Nutt
9042995ee1
All configurations with CONFIG_PL2303 should also set CONFIG_LIB_BOARDCTL and CONFIG_BOARDCTL_USBDEVCTRL
2016-03-25 16:14:27 -06:00
Gregory Nutt
cc5a678a9e
Extend boardctl() USB device control to include PL2303 serial
2016-03-25 16:01:59 -06:00
Gregory Nutt
512a31527b
Extend boardctl() USB device control to include PL2303 serial
2016-03-25 16:01:40 -06:00
Gregory Nutt
78be285ca5
Building of stm32_appinit.c should depend on CONFIG_LIB_BOARDCTL, not CONFIG_NSH_LIBRARY
2016-03-25 15:23:54 -06:00
Gregory Nutt
075d84b954
Rename stm32_nsh.c to stm32_appinit.c with is a more appropriate name
2016-03-25 15:20:33 -06:00
Gregory Nutt
9da88b9b83
Move stm32_cxxinitialize to where it belongs in apps/platform
2016-03-25 15:15:50 -06:00
Gregory Nutt
e2b16e0cb6
Update README
2016-03-25 15:01:55 -06:00
Gregory Nutt
9ceba8cd8f
Changes from review of last PR
2016-03-25 15:01:16 -06:00
Gregory Nutt
b089e98a83
Merged in ziggurat29/boards/stm32l4_disco (pull request #33 )
...
basic support of STM32L4VG Discovery board. Functioning nsh, leds, buttons. Also compatible with, but not requiring, RNG code in 'arch'.
2016-03-25 14:37:14 -06:00
ziggurat29
b732dc820a
Merge branch 'stm32l4_disco'
2016-03-25 15:33:24 -05:00
Gregory Nutt
3e4ae24387
Fix a few issues related to new USB device boardctl() commands
2016-03-25 14:23:27 -06:00
Gregory Nutt
55407013ea
Fix a few issues related to new USB device boardctl() commands
2016-03-25 14:23:01 -06:00
ziggurat29
5df125cf9c
basic support of STM32L4VG Discovery board. Functioning nsh, leds, buttons. Also compatible with, but not requiring, RNG code in 'arch'.
2016-03-25 15:21:24 -05:00
Gregory Nutt
54f71c20fe
Fix some conditional logic that I broke with a preceding commit
2016-03-25 13:34:29 -06:00
Gregory Nutt
423fe999b6
Add configuration files that have CONFIG_CDCACM=y (and not CONFIG_CDCACM_COMPOSITE) must have CONFIG_LIB_BOARDCTL=y and CONFIG_BOARD_USBDEVCTRL=y
2016-03-25 12:39:28 -06:00
Gregory Nutt
f3119c4c44
Add configuration files that have CONFIG_USBMSC=y (and not CONFIG_USBDEV_COMPOSITE) must have CONFIG_LIB_BOARDCTL=y and CONFIG_BOARD_USBDEVCTRL=y
2016-03-25 12:24:19 -06:00
Gregory Nutt
0334d4b4cd
Rename usbmsc_archinitialize to board_usbmsc_initialize
2016-03-25 12:09:37 -06:00
Gregory Nutt
426ff59f80
All configurations that set CONFIG_SYSTEM_COMPOSITE must also select CONFIG_LIB_BOARDCTL and CONFIG_BOARDCTL_USBDEVCTL
2016-03-25 11:32:26 -06:00
Gregory Nutt
39326f3b96
Rename all occurrences of composite_archinitialize to board_composite_initialize
2016-03-25 11:16:38 -06:00
Gregory Nutt
9b9c374a83
Add basic definitions for control of USB devices via boardctl()
2016-03-25 10:52:39 -06:00
Gregory Nutt
a2620361df
Add basic definitions for control of USB devices via boardctl()
2016-03-25 10:51:57 -06:00
Gregory Nutt
164dad9cd2
Sabre-6quad: Add crystal frequencies to board.h
2016-03-24 14:45:04 -06:00
Gregory Nutt
53a721cdd7
Fix a cloned error in both sq_cat() and dq_cat()
2016-03-23 14:48:50 -06:00
Gregory Nutt
1652052f52
Update a README.txt
2016-03-23 14:48:03 -06:00
Gregory Nutt
03a77c1d18
Remove most unused references to CONFIG_NET_MULTICAST. Rename other uses of CONFIG_NET_MULTICAST to avoid naming comflicts.
2016-03-20 13:16:17 -06:00
Gregory Nutt
e5b0c0e502
Remove most unused references to CONFIG_NET_MULTICAST. Rename other uses of CONFIG_NET_MULTICAST to avoid naming comflicts.
2016-03-20 13:15:58 -06:00
Gregory Nutt
4639cdd894
TCP timeouts: Fix some logic when there are multiple network interfaces. In this case, TCP timeout events can really only being processed when the poll from the correct device is received.
2016-03-20 08:19:00 -06:00
Gregory Nutt
fae9092e5a
Eliminate a warning
2016-03-19 14:01:35 -06:00
Gregory Nutt
242f8ff25f
drivers/syslog/note_driver.c: Add a driver that will allow an application to read buffered scheduler instrumentation data
2016-03-17 14:46:00 -06:00
Gregory Nutt
b4679985e4
Sabre-6Quad: Update linker script to account for memory at beginning of DRAM reserved for U-Boot
2016-03-17 13:00:53 -06:00
Gregory Nutt
e879d0f423
Move scheduler instrumentation hooks out of sched.h (where they seem like application interfaces) and into nuttx/sched.h where it is clare that these are OS internal interfaces.
2016-03-16 11:00:31 -06:00
Gregory Nutt
07870c1161
Make it clear that GIC support is GICv2
2016-03-14 10:50:27 -06:00
Gregory Nutt
320b70ebad
Update submodules
2016-03-12 13:24:38 -06:00
Gregory Nutt
50c24c8507
Update README.txt
2016-03-12 13:24:22 -06:00
Gregory Nutt
a193e669d1
Update submodules
2016-03-12 11:47:23 -06:00
Gregory Nutt
51093bfd21
Refresh configuration
2016-03-12 11:46:31 -06:00
Gregory Nutt
6fea59f334
Rename CONFIG_SAMA5_HAVE_TRUSTZONE to CONFIG_ARCH_HAVE_TRUSTZONE; Eliminate CONFIG_SAMA5_SECURE
2016-03-12 10:52:22 -06:00
Gregory Nutt
8cff133a1c
Update submodules
2016-03-11 12:31:44 -06:00
Gregory Nutt
0becfb8091
Update Status in a README.txt file
2016-03-11 12:31:24 -06:00
Gregory Nutt
30b6ee96c9
Add basic definitions for TLS support
2016-03-10 11:56:33 -06:00
Sebastien Lorquet
02cfe6ea61
Add support for the Nucleo-L476 board
2016-03-10 11:21:35 -06:00
Gregory Nutt
760fb63f33
Update README/TODO with new naming
2016-03-09 17:39:43 -06:00
Gregory Nutt
3217a2992a
Remove explicit reference to current_regs
2016-03-09 13:01:20 -06:00
Stefan Kolb
fde277a388
Missing parentheses in MSEC2TICK macro can lead to incorrect conversions
2016-03-09 07:24:16 -06:00
Gregory Nutt
156904d030
Update all Atmel SAMxxx configurations
2016-03-08 17:07:12 -06:00
Gregory Nutt
4b1c510f6f
Refresh all STM32 configurations
2016-03-08 17:03:32 -06:00
Gregory Nutt
fea11c002a
Build system: Add 'make oldconfig' target. Use this option in tools/testbuild.sh. Add --silent option to tools/refresh.sh so that it can be run in batch without human interaction
2016-03-08 16:50:58 -06:00
Gregory Nutt
fbe031e231
Update configuration
2016-03-08 16:48:00 -06:00
Gregory Nutt
88d8a81b23
tools/testbuild.sh: kconfig-conf was silently failing because (1) it needs to execute from the top-level NuttX directory and (2) apps/Kconfig does not yet exist
2016-03-08 14:12:44 -06:00
Gregory Nutt
7b20b7ec5d
Sabre-6Quad: Add LED GPIO/IOMUX definitions
2016-03-07 17:44:55 -06:00
Gregory Nutt
c13cb0f839
Update submodules
2016-03-07 16:14:52 -06:00
Gregory Nutt
cb0b518042
Sabre-6Quad: Add some pin disambiguatino logic
2016-03-07 09:03:41 -06:00
Gregory Nutt
9b5e88af71
Update some comments
2016-03-06 13:50:26 -06:00
Gregory Nutt
e1d024039a
Sabre-6Quad: Update some GPIO configuration functin names
2016-03-05 09:12:30 -06:00
Gregory Nutt
5d63cd85c7
sched/semaphore: Add an internal interface to reset a semaphore count.
2016-03-05 07:33:24 -06:00
Gregory Nutt
7d32bbebde
Refresh configuration
2016-03-05 07:32:11 -06:00
Frank Benkert
3ffbfcd150
SAMV71 and SAME70: Place the Main Oscillator Enable in the board.h
2016-03-04 12:30:54 -06:00
Gregory Nutt
fb512f1f37
i.MX1: Rename imx_boardinitialize to imx_board_initialize
2016-03-03 16:41:39 -06:00
Gregory Nutt
68102e4835
Update configuration
2016-03-02 15:51:49 -06:00
Gregory Nutt
cae713eeb1
Sabre-6Quad: Rename some files; add dummy LED files
2016-03-02 13:14:02 -06:00
Gregory Nutt
8899cef78e
Update submodules
2016-03-01 14:19:06 -06:00
Gregory Nutt
db78decb5c
Sabre-6Quad: Some fixes for early compile issues
2016-03-01 14:17:03 -06:00
Gregory Nutt
480eab8423
Update ChangeLog
2016-03-01 12:59:12 -06:00
Gregory Nutt
f9cf6a0759
Merged in paulpatience/nuttx-boards/stm32f429i_disco_board (pull request #32 )
...
STM32F429I-Disco: Update STM32_RCC_DCKCFGR_PLLSAIDIVR
2016-03-01 11:54:18 -06:00
Paul A. Patience
ecbf20065c
STM32F429I-Disco: Update STM32_RCC_DCKCFGR_PLLSAIDIVR
2016-03-01 10:11:21 -05:00
Paul A. Patience
4703dffb94
Nucleo F303RE: Rename ADC pins
2016-03-01 09:52:25 -05:00
Gregory Nutt
57d3775db6
Update README
2016-02-29 14:08:47 -06:00
Gregory Nutt
c02ede8fa0
Update README
2016-02-29 13:18:42 -06:00
Gregory Nutt
48bd8aed91
Add configuration support for the Sabre-6Quad board
2016-02-29 13:16:39 -06:00
Gregory Nutt
4e5b80f4a6
Update submodules
2016-02-28 15:32:58 -06:00
Gregory Nutt
f5c987a627
Change name IMX to IMX1 in configuration variable names to make room for i.MX6
2016-02-28 15:19:19 -06:00
Gregory Nutt
4ad08a2d85
Update ChangeLog
2016-02-28 14:17:39 -06:00
Gregory Nutt
806ed67309
Remove characters not supported by character set from README
2016-02-28 14:15:38 -06:00
Gregory Nutt
9f98e7ae58
Sabre 6Quad: Basic directory support (not much there now)
2016-02-28 14:14:06 -06:00
Gregory Nutt
300edb9b0f
Update ChangeLog
2016-02-27 10:37:42 -06:00
Gregory Nutt
213029586c
Rename the imx/ directories to imx1/ to make room in the namespace for other members of the i.MX family
2016-02-27 10:37:00 -06:00
Gregory Nutt
cfe018e991
Rename CONFIG_WIRELESS to CONFIG_DRIVERS_WIRELESS
2016-02-26 16:50:26 -06:00
Gregory Nutt
871d183f11
Rename CONFIG_WIRELESS to CONFIG_DRIVERS_WIRELESS
2016-02-26 16:48:09 -06:00
Gregory Nutt
12c14ee718
Rename CONFIG_WIRELESS to CONFIG_DRIVERS_WIRELESS
2016-02-26 16:45:29 -06:00
Gregory Nutt
309beae2cd
Move drivers/ieee802154 to drivers/wireless/ieee802154; rename include/nuttx/net ieee802154 to 6lowpan.h
2016-02-26 15:03:16 -06:00
Gregory Nutt
a665f17fc8
SAME70: The nomimal frequency of the slow RC oscillator is 32KHz, not 32.768 KHz which has too much false implied accuracy
2016-02-26 12:32:13 -06:00