Gregory Nutt
2c01aaad59
STM32F0: Add basic support for STM32F07x family
2017-04-17 16:54:07 -06:00
Gregory Nutt
0ef4e37c9e
Upate some comments.
2017-04-17 14:28:19 -06:00
Alan Carvalho de Assis
b0597583da
Fix System Clock value to 48MHz and remove MCLK definition
2017-04-17 12:48:07 -06:00
Gregory Nutt
efd674e09f
STM32F0-Discovery: Clarifie clock calculations in board.h
2017-04-17 12:24:23 -06:00
Gregory Nutt
8df9e7f8ce
STM32F0-Discovery: Correct part number in board.h
2017-04-17 11:18:13 -06:00
Alan Carvalho de Assis
3249da6557
STM32F0: Fix HSI clock definition
2017-04-17 11:14:24 -06:00
Gregory Nutt
cd62425433
STM32F0: type of regval should be uint32_t in clockconfig(). Fix a warning from __start().
2017-04-17 09:17:31 -06:00
Gregory Nutt
0652cbfd12
Update TODO list and README files.
2017-04-15 07:40:14 -06:00
Gregory Nutt
fffdba0835
Revert "Add a placeholder for nucleo-64 boards. Currently these are in various directories nucleo-f303re, nucleo-f334r8, and nucleo-l476rg but need to be consolidated here because these are all the same boards."
...
This reverts commit 935cc4e3de
.
2017-04-14 17:15:58 -06:00
Gregory Nutt
935cc4e3de
Add a placeholder for nucleo-64 boards. Currently these are in various directories nucleo-f303re, nucleo-f334r8, and nucleo-l476rg but need to be consolidated here because these are all the same boards.
2017-04-14 13:30:36 -06:00
Alan Carvalho de Assis
4602212612
Fix serial compilation issues
2017-04-14 11:42:20 -06:00
Gregory Nutt
2158c2d582
STM32F0 Discovery: Remove inclusion of stm32_rcc.h in board.h
2017-04-14 08:53:24 -06:00
Alan Carvalho de Assis
2a7909aade
Small fixes to get stm32f0discovery compiled correctly
2017-04-14 08:50:47 -06:00
Alan Carvalho de Assis
2cc7744b0c
Add stm32f0discovery board support
2017-04-14 08:34:38 -06:00
Gregory Nutt
39b62c6b46
Changes from review of last PR
2017-04-13 06:50:33 -06:00
Brian Webb
1a9403313e
Adds USB host support to stm32f411-disco board.
2017-04-12 20:37:34 -07:00
Gregory Nutt
77f980e676
Buttons: Correct some comments left after last button-related change: 32- vs 8-bit bit set.
2017-04-09 14:44:49 -06:00
Gregory Nutt
5104eb530f
Photon: Add logic to automatically mount the procfs file system on startup. Fix some LED-related configuration conflicts.
2017-04-09 13:46:27 -06:00
Gregory Nutt
de2c368249
Eliminate a warning about garbage at the end of the line.
2017-04-09 12:13:47 -06:00
Gregory Nutt
dedc3c15d4
Add support for NuttX controlled LEDS and for board_initialize. Separate initialize logic to stm32_bringup.c so that in initialization can occur either through board_initialize() or through board_app_initialize(). Same as with most other newer board configurations.
2017-04-09 10:16:05 -06:00
Gregory Nutt
55b32430e1
Fix photon/nsh/defconfig, was turning on non-existent LED support when the configuration was refreshed.
2017-04-09 07:48:40 -06:00
Gregory Nutt
f9e402018b
Buttons: Change return value of board_buttons() and the type of btn_buttonset_t to uint32_t so that more than 8 buttons can be supported.
2017-04-09 07:22:49 -06:00
Mark Schulte
35ca733108
pthread.h: Fix rwlock initializer
2017-04-08 12:34:08 -06:00
Bob Ryan
3465f6be53
Disable serial console on stm32f103-minimum usbnsh example project config. Devices enumerate after this change.
2017-04-06 17:41:07 -07:00
Gregory Nutt
869e3b5b73
sim/sixlowpan: Now support apps/examples/udpblaster too.
2017-04-06 09:36:57 -06:00
Gregory Nutt
b7c55660cb
6loWPAN: Correct more address manipulations.
2017-04-05 13:04:22 -06:00
Gregory Nutt
cb70ce7d3c
6loWPAN: Correct some IPv6 addresses and operations on IPv6 addresses.
2017-04-05 12:11:09 -06:00
Gregory Nutt
7cb34d969d
6loWPAN: More fixes from early debug.
2017-04-03 15:25:36 -06:00
Gregory Nutt
2c06f8ab78
6loWPAN: Updates/fixes from early testing with the IEEE802.15.4 loopback driver.
2017-04-03 12:01:04 -06:00
Gregory Nutt
e9d831ac60
wireless/ieee802154: Add initialization logic for loopback driver; configs/sim: Add configuration for testing 6loWPAN; net/sixlowpan: Fix for compilation with debug output enabled.
2017-04-03 09:15:00 -06:00
Gregory Nutt
068ac948e1
sim: Add a configuration for testing 6loWPAN.
2017-04-03 08:46:16 -06:00
Gregory Nutt
1b6630ee75
6loWPAN: Fix compile errors and warnings when building the complete 6loWPAN configuration.
2017-04-02 17:46:22 -06:00
Gregory Nutt
c3289afa9c
Fix error in last update to a README
2017-03-30 12:29:19 -06:00
Gregory Nutt
0ded0f5866
Update README and comments
2017-03-30 08:43:07 -06:00
Jussi Kivilinna
dffb8a67e3
Add entropy pool and strong random number generator
...
Entropy pool gathers environmental noise from device drivers, user-space, etc., and returns good random numbers, suitable for cryptographic use. Based on entropy pool design from *BSDs and uses BLAKE2Xs algorithm for CSPRNG output.
Patch also adds /dev/urandom support for using entropy pool RNG and new 'getrandom' system call for getting randomness without file-descriptor usage (thus avoiding file-descriptor exhaustion attacks). The 'getrandom' interface is similar as 'getentropy' and 'getrandom' available on OpenBSD and Linux respectively.
2017-03-30 07:38:37 -06:00
Gregory Nutt
5fb222180c
6loWPAN: IEEE802.15.4 MAC driver will need a special form of the network device structure to manage fragmentation of the large packet into frames.
2017-03-29 10:17:34 -06:00
Sebastien Lorquet
28e74ec058
Nucleo L476RG: More naming fixes.
2017-03-29 07:16:27 -06:00
Anthony Merlino
abab1e68a8
configs/clicker2-stm32: Fixes minor SPI configuration issues
2017-03-28 17:06:34 -04:00
Sebastien Lorquet
db8b38f848
STM32 L4: More SPI clean-up. Lower case replacements.
2017-03-28 08:58:43 -06:00
Sebastien Lorquet
9221e15811
STM32 L4: Fix some bad naming in the SPI driver.
2017-03-28 07:28:55 -06:00
Gregory Nutt
77e4953fe3
Eliminate a 'make menuconfig' warning
2017-03-27 09:42:36 -06:00
Gregory Nutt
c071e2a30c
Make sure that CONFIG_PTHREAD_MUTEX_ROBUST=y is selected every configuration that enabled pthreads.
2017-03-27 09:21:03 -06:00
Gregory Nutt
b07d3fc305
Rename CONFIG_MUTEX_TYPES to CONFIG_PTHREAD_MUTEX_TYPES
2017-03-27 09:08:14 -06:00
Gregory Nutt
7d57a2b2bd
Trivial changes from review of last PR.
2017-03-25 10:38:41 -06:00
Mateusz Szafoni
c174074dd8
Merged in raiden00/nuttx (pull request #299 )
...
Add COMP character driver
Approved-by: Gregory Nutt <gnutt@nuttx.org>
2017-03-25 16:29:02 +00:00
raiden00pl
045f0edfac
Merge remote-tracking branch 'upstream/master'
2017-03-25 17:12:11 +01:00
raiden00pl
645a11ce65
nucleo-f334r8: Use new COMP driver
2017-03-25 16:59:20 +01:00
Gregory Nutt
700d4e6580
Clicker2 STM32: NSH configuration does not need FAT support.
2017-03-25 07:23:19 -06:00
Gregory Nutt
b47e1888f5
Clicker2-STM32: Add usbnsh configuration.
2017-03-25 06:59:27 -06:00
Gregory Nutt
af85aca1aa
Remove some whitespace at the end of some lines
2017-03-24 18:09:19 -06:00