We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7410aff commit edc3fcfCopy full SHA for edc3fcf
main/src/system/init.c
@@ -6,13 +6,11 @@
6
*/
7
8
#include "device/nvs.h"
9
-#include "device/bt.h"
10
#include "device/spi.h"
11
#include "device/i2s.h"
12
#include "device/wifi.h"
13
#include "device/uart.h"
14
15
-#include "driver/led.h"
16
#include "driver/pn532.h"
17
18
void device_init(void)
@@ -21,8 +19,6 @@ void device_init(void)
21
19
wifi0_init();
22
20
uart1_init();
23
24
- bt0_init();
25
-
26
#if defined(CONFIG_ENABLE_AUDIO)
27
i2s0_init();
28
#endif
@@ -34,8 +30,5 @@ void device_init(void)
34
30
35
31
void driver_init(void)
36
32
{
37
-#if defined(CONFIG_ENABLE_LED)
38
- led_init();
39
-#endif
40
33
pn532_init();
41
}
0 commit comments