forked from espressif/arduino-esp32
Initial Esp32c3 Support (#5060)
This commit is contained in:
@ -9,9 +9,9 @@
|
||||
*/
|
||||
|
||||
// Set up the rgb led names
|
||||
uint8_t ledR = A4;
|
||||
uint8_t ledG = A5;
|
||||
uint8_t ledB = A18;
|
||||
uint8_t ledR = 2;
|
||||
uint8_t ledG = 4;
|
||||
uint8_t ledB = 5;
|
||||
|
||||
uint8_t ledArray[3] = {1, 2, 3}; // three led channels
|
||||
|
||||
|
0
libraries/ESP32/examples/HallSensor/.skip.esp32c3
Normal file
0
libraries/ESP32/examples/HallSensor/.skip.esp32c3
Normal file
@ -17,6 +17,8 @@
|
||||
#include "esp32/rom/rtc.h"
|
||||
#elif CONFIG_IDF_TARGET_ESP32S2
|
||||
#include "esp32s2/rom/rtc.h"
|
||||
#elif CONFIG_IDF_TARGET_ESP32C3
|
||||
#include "esp32c3/rom/rtc.h"
|
||||
#else
|
||||
#error Target CONFIG_IDF_TARGET is not supported
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user