Nathan Hartman
32e9ba7604
Documenation/, configs/: ix typos and one HTML syntax error. Fix HTML syntax error in Documentation/NfsHowto.html: <coce> -> <code> html tag.
2019-07-30 16:10:15 -06:00
Daniel P. Carvalho
23d5e666cc
onfigs/nucleo-l432kc: ADC: Change analog pins definitions and correct DMA related issue.
2019-07-27 07:42:50 -06:00
Daniel Pereira Carvalho
0a4c592a4b
configs/nucleo-l432kc/src/stm32_zerocross.c: Necessary file ommitted from a previous patch
2019-07-25 08:40:40 -06:00
Daniel P. Carvalho
752a7d249c
configs/nucleo-l432kc: Added Zero Cross sensor to nucleo-l432kc.
2019-07-23 16:07:17 -06:00
Daniel P. Carvalho
53e760d072
configs/nucleo-l432kc/src/stm32_gpio.c: Added GPIO drivers for use with /apps/examples/gpio.
2019-07-23 11:13:43 -06:00
Dave Marples
5179fa9a64
drivers/serial/serial.c: Limit the number of times that the poll semaphore is incrmented.
2019-06-13 16:23:04 -06:00
Sebastien Lorquet
467d29bea9
configs/nucleo-l432kc: Shorten some long lines, fix i2c pinout in l432kc, add support for testing the ina219 current sensor.
2019-06-13 07:06:59 -06:00
Gregory Nutt
d5bbbba8ad
Rename all remaining arch/xxx/src/xxx/chip to arch/xxx/src/xxx/hardware.
2019-05-25 09:27:28 -06:00
Gregory Nutt
50d18f9774
Rename arch/arm/src/stm32l4/chip to arch/arm/src/stm32l4/hardware.
2019-05-24 18:06:01 -06:00
Gregory Nutt
b49be4bb20
Squashed commit of the following:
...
arch/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
sched/ audio/ crypto/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
Documentation/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
fs/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
graphics/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
net/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
drivers/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
include/, syscall/, wireless/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
configs/: Remove all references to CONFIG_DISABLE_POLL. Standard POSIX poll can no longer be disabled.
2019-05-21 18:57:54 -06:00
Juha Niskanen
2df7235536
arch/arm/src/stm32l4: Make STM32L4 CRS synchronization source board configurable.
...
configs/nucleo-l432kc: Add new configuration settings to board.h
configs/nucleo-l452re: ditto
configs/nucleo-l496zg: ditto
configs/stm32l476vg-disco: ditto
2019-05-21 10:21:57 -06:00
Alan Carvalho de Assis
7133f89cc2
tools/Makefile.unix, .win, and all defconfig files: Modify tools/Makefiles to add warning on defconfig files
2019-03-03 08:31:03 -06:00
Gregory Nutt
a76e137ce2
Squashed commit of the following:
...
sched/init/nx_start.c: Add support for CONFIG_BOARD_DRIVER_INITIALIZE. If this option is selected then nx_start() will call a board-provided function board_driver_initialize() immediately after calling up_initialize().
Rename CONFIG_BOARD_INITIALIZE to CONFIG_BOARD_LATE_INITIALIZE.
Raname board_initialize() to board_late_initialize()
2019-02-18 15:32:00 -06:00
Nikolay Semenov
5bbd831222
configs/nucleo-l432kc/src/stm32_appinit.c: Add support for I2C driver initialization.
2019-01-28 06:12:52 -06:00
Gregory Nutt
df64811269
up_initialize(): As noted by Roland Takacs in Bitbucket issue 141, there is a compilation error for STM32 if CONFIG_NET and CONFIG_NETDEV_LATEINIT are selected. That was due in part to commit 19e16cb
which extended up_netinitialize() with a !defined(CONFIG_NETDEV_LATEINIT) guard but did not add the guard to concrete implementations. I say "in part" because I don't think that the original intent of commit 19e16cb
was to enable an alternative initialization of MCU internal Ethernet support but rather to enable support of external Ethernet devices that may have dependencies on, for example, SPI. However, this is still a proper fix to avoid the compilation error that can occur with this combination of configuration options.
2019-01-25 07:21:03 -06:00
Gregory Nutt
ca747ee289
Rename CONFIG_EXAMPLES_OSTEST -> CONFIG_TESTING_OSTEST
2018-12-12 17:56:02 -06:00
Daniel P. Carvalho
d98262f348
configs/nucleo-l432kc: Add support for the INA226.
2018-11-05 16:41:34 -06:00
Daniel P. Carvalho
f4cb7dafc3
configs/nucleo-l432kc/src/stm32_at45db.c: Forgot to add file with commit 578114a74f
2018-10-26 11:50:29 -06:00
Daniel P. Carvalho
578114a74f
configs/nucleo-l432kc: Added support for AT45DB Serial Flash
2018-10-25 16:12:59 -06:00
Daniel P. Carvalho
c28cbdb22f
configs/nucleo-l432kc/include/board.h: Fix SPI pin definitions.
2018-10-24 17:25:30 -06:00
Gregory Nutt
47d87fd857
configs/: Refresh ARM and Xtensa configurations.
2018-08-19 17:48:13 -06:00
Gregory Nutt
bbad69ab61
Change all occurrences of CONFIG_EXAMPLES_NSH* to CONFIG_SYSTEM_NSH* to match changes in the apps/ directory.
2018-08-18 09:14:59 -06:00
Gregory Nutt
8d68d9ca43
arch/arm/src/stm32, stm32f7, stm32l4, and related defconfig files: The STM32 RTC driver was being selected by the global CONFIG_RTC option. That is in correct. For example, if you want to disabled the STM32 RTC and use an external RTC you cannot because the external RTC also depends on the global CONFIG_RTC. The solution is to add a new CONFIG_STM32xx_RTC configuration option the permits to you select or deselect the STM32 RTC but still be able to selecte the external RTC.
2018-08-08 12:42:04 -06:00
Daniel Pereira Carvalho
391f3715c1
configs/nucleo-l432kc/include/nucleo-l432kc.h: Fix TIMx clock configuration. Also removes definitions related to timers no available in the STM32L432KC.
2018-08-07 14:44:44 -06:00
Daniel P. Carvalho
9574b0f29b
configs/nucleo-l432kc: Fix stm32_userleds and some comments. After change LD2 to LD3 in board.h stm32_userleds.c was broken.
2018-08-03 09:31:40 -06:00
Daniel Pereira Carvalho
d755b07a06
drivers/analog: Add driver for digital to analog converted DAC7571.
...
configs/nucleo-l432kc: Add support for a connect DAC7571 converter.
2018-08-02 06:40:48 -06:00
Daniel P. Carvalho
1ef922faac
configs/nucleo-l432kc: Fix RAM size; STM31L4x2xx has only 64Kb of RAM. Remove references to I2C and SDIO: There is no I2C2 or SDIO on the STM32F4x2xx.
2018-07-17 11:02:47 -06:00
Daniel P. Carvalho
9223123cd2
arch/arm/src/stm32l4: Added custom pin mapping for STM32L4X2XX processors.
2018-07-16 15:42:13 -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
dc8941e958
configs/: Add definition of strip to many Make.defs files.
2018-03-25 09:25:37 -06:00
Gregory Nutt
7cf88d7dbd
Make sure that labeling is used consistently in all function headers.
2018-02-01 10:00:02 -06:00
Fanda Vacek
9916ca89e6
NUCLEO F432KC typo fixed, correct name is L432KC
...
Just README.txt and comments affected, no changes in the code
2018-01-21 19:06:22 +01:00
Gregory Nutt
f153df28d3
configs/nucleo-l432kc: Fix numerous cloning errors/typos.
2018-01-20 16:16:35 -06:00
Fanda Vacek
d0ae325c15
Issue #85 : /dev/userleds is not working for nucleo-l432kc fixed
2018-01-20 23:02:34 +01:00
Fanda
53db5c80f3
Merged in fvacek/nuttx (pull request #572 )
...
Fixed nucleo-l432kc broken build when CONFIG_USERLED_LOWER defined
Approved-by: Gregory Nutt <gnutt@nuttx.org>
2018-01-16 23:33:58 +00:00
Gregory Nutt
a30ccce7ce
configs/nucleo-l432kc/src: Fix some bogus logic noted by Fanda.
2018-01-15 18:22:29 -06:00
Gregory Nutt
4cba634a12
Mostly cosmetic changes from review of last PR. Also same inappropriate use of _info changes to configurable debug macros. Remember folks, if it has a _ or __ in front, it is not intended for use outside of the header file. It is an internal private definition.
2017-08-30 07:05:30 -06:00
Juha Niskanen
0a1da7eaca
configs: update STM32L4 configs for ADC changes
...
Signed-off-by: Juha Niskanen <juha.niskanen@haltian.com>
2017-08-30 11:40:58 +03:00
Gregory Nutt
88a87f8e3f
6LoWPAN: The original, Contiki-based design used only a single buffer for reassemblying larger packets. This could be a problem issue for hub configurations which really need the capability concurrently reassemble multiple incoming streams concurrently. These was also a design issue in that the reassembly buffer could be corrupted by outgoing packets. The design was extended to support multiple reassembly buffers, each associated with the reassembly tag and source address. This assures that there can be be no corruption of the reassembly once it has started.
2017-08-26 10:00:47 -06:00
Juha Niskanen
874947d7e5
STM32L4 TIM: TIM15,16,17 are always in APB2
2017-08-25 07:02:21 -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
2319ea53a9
STM32L4: Eliminate a warning about implicit definition of function. While we are at it, let's improve the naming a little too.
2017-07-22 09:53:29 -06:00
Gregory Nutt
7577dba2c3
Move remaining, unique Make.defs files into scripts directory.
2017-07-11 11:40:27 -06:00
Gregory Nutt
e40ccc1b60
Move remaining, unique Make.defs files into scripts directory.
2017-07-11 11:14:11 -06:00
Gregory Nutt
422888733b
More conversions of defconfig files to compressed format. Not yet finished.
2017-07-09 19:25:19 -06:00
Gregory Nutt
90f38af8dc
More conversions of defconfig files to compressed format. Not yet finished.
2017-07-09 18:48:28 -06:00
Gregory Nutt
c67b807f43
configs/: Remove dangling spaces at the end of lines in *.c and *.h files.
2017-06-28 13:21:20 -06:00
Gregory Nutt
cd54a0340f
Fix a typo. And typo in Kconfig file is reflect in all defconfig files.
2017-06-15 14:29:09 -06:00
Gregory Nutt
b0fda33e13
Kconfig: Rename CONFIG_ARM_TOOLCHAIN_IAR to CONFIG_ARCH_TOOLCHAIN_IAR
2017-05-13 16:01:38 -06:00
Gregory Nutt
6e4918c557
Remove CONFIG_ARM_TOOLCHAIN_GNU; replace with CONFIG_ARCH_TOOLCHAIN_GNU
2017-05-13 13:28:15 -06:00