..
.gitignore
.dSYM only needs to be in the same .gitignore files as .exe
2013-05-30 15:02:04 -06:00
Makefile
arch/ and config/ files: All board interfaces (those starting with board_) must be defined in board-specific logic. Otherwise, they cannot be customized of specialized usage by different boards. The board_reset() interface was defined in architecture-specific logic that only called up_systemreset(). That is useless!
2019-03-25 11:12:38 -06:00
stm32_appinit.c
Add initial support for the MakerLisp eZ80 board. Ref: https://makerlisp.com/
2019-06-04 11:12:17 -06:00
stm32_autoleds.c
Centralize definitions associated with CONFIG_DEBUG_LEDS
2016-06-15 14:12:19 -06:00
stm32_bh1750fvi.c
Make sure that labeling is used consistently in all function headers.
2018-02-01 10:00:02 -06:00
stm32_bmp180.c
Make sure that labeling is used consistently in all function headers.
2018-02-01 10:00:02 -06:00
stm32_boot.c
Squashed commit of the following:
2019-02-18 15:32:00 -06:00
stm32_bringup.c
Merged in rzr/nuttx/sandbox/rzr/review/master (pull request #903 )
2019-06-15 04:14:53 +00:00
stm32_buttons.c
STM32F4 Discovery: Fix some errors do missing inclusion of stm32_gpio.h
2017-11-25 12:06:22 -06:00
stm32_can.c
Move CAN subsystem to its own directory and put device drivers there
2017-05-12 11:48:47 -03:00
stm32_critmon.c
configs/stm32f4discovery/src/stm32_critmon.c: include dwt.h, don't define DWT_CYCNT inline.
2018-11-27 09:39:09 -06:00
stm32_cs43l22.c
STM32F4: add cs43l22 audio driver and i2s driver
2017-05-21 14:14:09 -06:00
stm32_ethernet.c
Fix lots of occurrences of 'the the', 'the there', 'the these', 'the then', 'the they.
2017-05-11 13:35:56 -06:00
stm32_extmem.c
Here's a patch to split the STM32 FMC/FSMC functionality (FSMC = flexible static memory controller, FMC = flexible memory controller = FSMC + sdram support). This commit makes FMC it's own thing rather than piggy backing on the FSMC code. The peripherals have a few utility functions and this commits lets you have a common function in the arch/arm/src/stm32 rather than having duplicate functions in the board code.
2019-05-27 07:21:52 -06:00
stm32_hciuart.c
include/nuttx/wireless/bluetooth: Move Bluetooth header files from include/nuttx/wireless to include/nuttx/wireless/bluetooth for symmetry with other wireless technologies.
2018-04-29 12:43:09 -06:00
stm32_idle.c
Rename sched_process_timer to nxsched_process_timer. That is the appropriate name for an internal sched/ function (still many named incorrectly).
2019-03-20 19:27:40 -06:00
stm32_lis3dsh.c
Remove trailing spaces at the end of lines.
2018-08-13 07:39:38 -06:00
stm32_max6675.c
Make sure that labeling is used consistently in all function headers.
2018-02-01 10:00:02 -06:00
stm32_max7219_leds.c
Squashed commit of the following:
2018-07-22 15:13:39 -06:00
stm32_max7219.c
configs/stm32f4discovery: Add MAX7219 support to STM32F4Discovery board
2018-04-21 17:41:01 -06:00
stm32_max31855.c
drivers/sensors/max31855: Add multiple max31855 sensors feature and support for bambino-200e and stm32f4discovery
2018-04-09 15:36:27 -06:00
stm32_mlx90614.c
configs/stm32f4discovery/src/stm32_mlx90614.c: Add MLX90614 support for the STM32F4Discovery board
2018-10-28 16:00:58 -06:00
stm32_netinit.c
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
stm32_nunchuck.c
Add missing file in previous commit
2017-11-28 12:54:03 -06:00
stm32_ostest.c
Squashed commit of the following:
2019-04-29 14:52:05 -06:00
stm32_pca9635.c
drivers/leds/pca9635pw.c configs/stm32f4discovery/src/stm32_pca9635.c: Fix pca9635pw LED driver compilation
2018-07-07 16:24:11 -06:00
stm32_pm.c
Make sure that labeling is used consistently in all function headers.
2018-02-01 10:00:02 -06:00
stm32_pmbuttons.c
board_button_irq: Button IRQ logic no longer returns the xcpt_t oldhandler. There value is useless and dangerous after the recent changes to interrupt argument passing.
2017-03-02 15:27:55 -06:00
stm32_pwm.c
Eliminate some warnings
2016-12-05 18:07:15 -06:00
stm32_qencoder.c
STM32F4 Discovery: Fix issues with QEncoder support
2017-02-24 07:04:58 -06:00
stm32_reset.c
Fix bad file inclusion introduced in preceding commit.
2019-03-25 12:26:04 -06:00
stm32_rgbled.c
configs/stm32f4discovery/src/stm32_rgbled.c: Krassimir Cheshmedzhiev claims that sys/types.h needs to be included to avoid undeclared 'OK'
2018-07-15 08:02:03 -06:00
stm32_romfs_initialize.c
Merged in rzr/nuttx/sandbox/rzr/review/master (pull request #898 )
2019-06-13 15:05:49 +00:00
stm32_romfs.h
Cosmetic changes from review of last PR
2017-09-28 08:30:41 -06:00
stm32_sdio.c
stm32_gpiosetevent: GPIO IRQ function should not return the xcpt_t oldhandler. This value is useful and potentially dangerous by itself after the change to assocaite a argument with the interrupt handler.
2017-03-02 18:36:14 -06:00
stm32_spi.c
Squashed commit of the following:
2018-07-22 15:13:39 -06:00
stm32_ssd1289.c
Here's a patch to split the STM32 FMC/FSMC functionality (FSMC = flexible static memory controller, FMC = flexible memory controller = FSMC + sdram support). This commit makes FMC it's own thing rather than piggy backing on the FSMC code. The peripherals have a few utility functions and this commits lets you have a common function in the arch/arm/src/stm32 rather than having duplicate functions in the board code.
2019-05-27 07:21:52 -06:00
stm32_ssd1351.c
Centralize definitions associated with CONFIG_DEBUG_LCD
2016-06-15 11:40:33 -06:00
stm32_st7032.c
configs/stm32f4discovery: Add board support to display ST7032i
2018-11-24 18:49:10 -06:00
stm32_st7567.c
Merged in jjlange/nuttx/lpc40xx (pull request #946 )
2019-07-11 16:50:00 +00:00
stm32_timer.c
Make sure that labeling is used consistently in all function headers.
2018-02-01 10:00:02 -06:00
stm32_ug2864ambag01.c
Centralize definitions associated with CONFIG_DEBUG_LCD
2016-06-15 11:40:33 -06:00
stm32_ug2864hsweg01.c
drivers/lcd: ssd1306: add support for board power control. ThingseeOne has regulator for controlling display power on/off. Patch adds support for board based power control to SSD1306 driver.
2017-08-22 08:40:27 -06:00
stm32_uid.c
added unique id implementation for f4discovery
2015-11-22 13:28:59 -05:00
stm32_usb.c
Make sure that labeling is used consistently in all function headers.
2018-02-01 10:00:02 -06:00
stm32_usbmsc.c
configs/stm32f4discovery: Add a USB MSC configuration
2017-10-13 10:02:22 -06:00
stm32_userleds.c
STM32F4 Discovery: Fix some errors do missing inclusion of stm32_gpio.h
2017-11-25 12:06:22 -06:00
stm32_xen1210.c
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
stm32_zerocross.c
STM32F4 Discovery: Fix some errors do missing inclusion of stm32_gpio.h
2017-11-25 12:06:22 -06:00
stm32f4discovery.h
configs/olimex-stm32-e407/src: Change initialization to match the way it is done with other boards.
2019-06-28 16:22:02 -06:00