1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

stm32l476g-disco: add usbdev feature

This commit is contained in:
Koen Zandberg 2019-10-24 16:53:25 +02:00 committed by Alexandre Abadie
parent 68a7bae0e8
commit 297724a381
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
3 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,7 @@ config BOARD_STM32L476G_DISCO
select HAS_PERIPH_RTT
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART
select HAS_PERIPH_USBDEV
# Put other features for this board (in alphabetical order)
select HAS_RIOTBOOT

View File

@ -6,6 +6,7 @@ FEATURES_PROVIDED += periph_rtc
FEATURES_PROVIDED += periph_rtt
FEATURES_PROVIDED += periph_timer
FEATURES_PROVIDED += periph_uart
FEATURES_PROVIDED += periph_usbdev
# Put other features for this board (in alphabetical order)
FEATURES_PROVIDED += riotboot

View File

@ -27,6 +27,7 @@
#include "periph_cpu.h"
#include "clk_conf.h"
#include "cfg_rtt_default.h"
#include "cfg_usb_otg_fs.h"
#ifdef __cplusplus
extern "C" {