Skip to content

Enabled the onboard ceramic antenna by default when creating a new project with XIAO_ESP32C6 #10066

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Aug 2, 2024
13 changes: 13 additions & 0 deletions variants/XIAO_ESP32C6/variant.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#include "esp32-hal-gpio.h"
#include "pins_arduino.h"

extern "C" {

void initVariant(void) {
pinMode(3, OUTPUT);
digitalWrite(3, LOW);//turn on this function

pinMode(14, OUTPUT);
digitalWrite(14, LOW);//use external antenna
}
}