
8 changed files with 1660 additions and 53 deletions
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
#
|
||||
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
|
||||
# project subdirectory.
|
||||
#
|
||||
|
||||
PROJECT_NAME := BlueCubeModv2
|
||||
|
||||
include $(IDF_PATH)/make/project.mk |
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
#
|
||||
# "main" pseudo-component makefile.
|
||||
#
|
||||
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
@ -0,0 +1,880 @@
@@ -0,0 +1,880 @@
|
||||
//
|
||||
// BlueCubeMod Firmware
|
||||
//
|
||||
//
|
||||
// Created by Nathan Reeves 2019
|
||||
//
|
||||
|
||||
#include "esp_log.h" |
||||
#include "esp_hidd_api.h" |
||||
#include "esp_bt_main.h" |
||||
#include "esp_bt_device.h" |
||||
#include "esp_bt.h" |
||||
#include "esp_err.h" |
||||
#include "nvs.h" |
||||
#include "nvs_flash.h" |
||||
#include "esp_gap_bt_api.h" |
||||
#include <string.h> |
||||
#include <inttypes.h> |
||||
#include <math.h> |
||||
#include "esp_timer.h" |
||||
|
||||
#include "freertos/FreeRTOS.h" |
||||
#include "freertos/task.h" |
||||
#include "freertos/semphr.h" |
||||
|
||||
#include "driver/gpio.h" |
||||
#include "driver/rmt.h" |
||||
#include "driver/periph_ctrl.h" |
||||
#include "soc/rmt_reg.h" |
||||
|
||||
|
||||
|
||||
#define LED_GPIO 25 |
||||
#define PIN_SEL (1ULL<<LED_GPIO) |
||||
|
||||
//for reading GameCube controller values
|
||||
#define RMT_TX_GPIO_NUM 23 // GameCube TX GPIO ----
|
||||
#define RMT_RX_GPIO_NUM 18 // GameCube RX GPIO ----
|
||||
#define RMT_TX_CHANNEL 2 /*!< RMT channel for transmitter */ |
||||
#define RMT_RX_CHANNEL 3 /*!< RMT channel for receiver */ |
||||
#define RMT_CLK_DIV 80 /*!< RMT counter clock divider */ |
||||
#define RMT_TICK_10_US (80000000/RMT_CLK_DIV/100000) /*!< RMT counter value for 10 us.(Source clock is APB clock) */ |
||||
#define rmt_item32_tIMEOUT_US 9500 /*!< RMT receiver timeout value(us) */ |
||||
|
||||
//Calibration
|
||||
static int lxcalib = 0; |
||||
static int lycalib = 0; |
||||
static int cxcalib = 0; |
||||
static int cycalib = 0; |
||||
static int lcalib = 0; |
||||
static int rcalib = 0; |
||||
//Buttons and sticks
|
||||
static uint8_t but1_send = 0; |
||||
static uint8_t but2_send = 0; |
||||
static uint8_t but3_send = 0; |
||||
static uint8_t lx_send = 0; |
||||
static uint8_t ly_send = 0; |
||||
static uint8_t cx_send = 0; |
||||
static uint8_t cy_send = 0; |
||||
static uint8_t lt_send = 0; |
||||
static uint8_t rt_send = 0; |
||||
|
||||
//RMT Transmitter Init - for reading GameCube controller
|
||||
rmt_item32_t items[25]; |
||||
rmt_config_t rmt_tx; |
||||
static void rmt_tx_init() |
||||
{ |
||||
|
||||
rmt_tx.channel = RMT_TX_CHANNEL; |
||||
rmt_tx.gpio_num = RMT_TX_GPIO_NUM; |
||||
rmt_tx.mem_block_num = 1; |
||||
rmt_tx.clk_div = RMT_CLK_DIV; |
||||
rmt_tx.tx_config.loop_en = false; |
||||
rmt_tx.tx_config.carrier_freq_hz = 24000000; |
||||
rmt_tx.tx_config.carrier_level = 1; |
||||
rmt_tx.tx_config.carrier_en = 0; |
||||
rmt_tx.tx_config.idle_level = 1; |
||||
rmt_tx.tx_config.idle_output_en = true; |
||||
rmt_tx.rmt_mode = 0; |
||||
rmt_config(&rmt_tx); |
||||
rmt_driver_install(rmt_tx.channel, 0, 0); |
||||
|
||||
//Fill items[] with console->controller command: 0100 0000 0000 0011 0000 0010
|
||||
|
||||
items[0].duration0 = 3; |
||||
items[0].level0 = 0; |
||||
items[0].duration1 = 1; |
||||
items[0].level1 = 1; |
||||
items[1].duration0 = 1; |
||||
items[1].level0 = 0; |
||||
items[1].duration1 = 3; |
||||
items[1].level1 = 1; |
||||
int j; |
||||
for(j = 0; j < 12; j++) { |
||||
items[j+2].duration0 = 3; |
||||
items[j+2].level0 = 0; |
||||
items[j+2].duration1 = 1; |
||||
items[j+2].level1 = 1; |
||||
} |
||||
items[14].duration0 = 1; |
||||
items[14].level0 = 0; |
||||
items[14].duration1 = 3; |
||||
items[14].level1 = 1; |
||||
items[15].duration0 = 1; |
||||
items[15].level0 = 0; |
||||
items[15].duration1 = 3; |
||||
items[15].level1 = 1; |
||||
for(j = 0; j < 8; j++) { |
||||
items[j+16].duration0 = 3; |
||||
items[j+16].level0 = 0; |
||||
items[j+16].duration1 = 1; |
||||
items[j+16].level1 = 1; |
||||
} |
||||
items[24].duration0 = 1; |
||||
items[24].level0 = 0; |
||||
items[24].duration1 = 3; |
||||
items[24].level1 = 1; |
||||
|
||||
} |
||||
|
||||
//RMT Receiver Init
|
||||
rmt_config_t rmt_rx; |
||||
static void rmt_rx_init() |
||||
{ |
||||
rmt_rx.channel = RMT_RX_CHANNEL; |
||||
rmt_rx.gpio_num = RMT_RX_GPIO_NUM; |
||||
rmt_rx.clk_div = RMT_CLK_DIV; |
||||
rmt_rx.mem_block_num = 4; |
||||
rmt_rx.rmt_mode = RMT_MODE_RX; |
||||
rmt_rx.rx_config.idle_threshold = rmt_item32_tIMEOUT_US / 10 * (RMT_TICK_10_US); |
||||
rmt_config(&rmt_rx); |
||||
} |
||||
|
||||
//Polls controller and formats response
|
||||
//GameCube Controller Protocol: http://www.int03.co.uk/crema/hardware/gamecube/gc-control.html
|
||||
static void get_buttons() |
||||
{ |
||||
ESP_LOGI("hi", "Hello world from core %d!\n", xPortGetCoreID() ); |
||||
//button init values
|
||||
uint8_t but1 = 0; |
||||
uint8_t but2 = 0; |
||||
uint8_t but3 = 0; |
||||
uint8_t dpad = 0x08;//Released
|
||||
uint8_t lx = 0; |
||||
uint8_t ly = 0; |
||||
uint8_t cx = 0; |
||||
uint8_t cy = 0; |
||||
uint8_t lt = 0; |
||||
uint8_t rt = 0; |
||||
|
||||
//Sample and find calibration value for sticks
|
||||
int calib_loop = 0; |
||||
int xsum = 0; |
||||
int ysum = 0; |
||||
int cxsum = 0; |
||||
int cysum = 0; |
||||
int lsum = 0; |
||||
int rsum = 0; |
||||
while(calib_loop < 5) |
||||
{ |
||||
lx = 0; |
||||
ly = 0; |
||||
cx = 0; |
||||
cy = 0; |
||||
lt = 0; |
||||
rt = 0; |
||||
rmt_write_items(rmt_tx.channel, items, 25, 0); |
||||
rmt_rx_start(rmt_rx.channel, 1); |
||||
|
||||
vTaskDelay(10); |
||||
|
||||
rmt_item32_t* item = (rmt_item32_t*) (RMT_CHANNEL_MEM(rmt_rx.channel)); |
||||
if(item[33].duration0 == 1 && item[27].duration0 == 1 && item[26].duration0 == 3 && item[25].duration0 == 3) |
||||
{ |
||||
|
||||
//LEFT STICK X
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if((item[x+41].duration0 == 1)) |
||||
{ |
||||
lx += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
|
||||
//LEFT STICK Y
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if((item[x+49].duration0 == 1)) |
||||
{ |
||||
ly += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
//C STICK X
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if((item[x+57].duration0 == 1)) |
||||
{ |
||||
cx += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
|
||||
//C STICK Y
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if((item[x+65].duration0 == 1)) |
||||
{ |
||||
cy += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
|
||||
//R AN
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if((item[x+73].duration0 == 1)) |
||||
{ |
||||
rt += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
|
||||
//L AN
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if((item[x+81].duration0 == 1)) |
||||
{ |
||||
lt += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
|
||||
xsum += lx; |
||||
ysum += ly; |
||||
cxsum += cx; |
||||
cysum += cy; |
||||
lsum += lt; |
||||
rsum += rt; |
||||
calib_loop++; |
||||
} |
||||
|
||||
} |
||||
|
||||
//Set Stick Calibration
|
||||
lxcalib = 127-(xsum/5); |
||||
lycalib = 127-(ysum/5); |
||||
cxcalib = 127-(cxsum/5); |
||||
cycalib = 127-(cysum/5); |
||||
lcalib = 127-(lsum/5); |
||||
rcalib = 127-(rsum/5); |
||||
|
||||
|
||||
while(1) |
||||
{ |
||||
but1 = 0; |
||||
but2 = 0; |
||||
but3 = 0; |
||||
dpad = 0x08; |
||||
lx = 0; |
||||
ly = 0; |
||||
cx = 0; |
||||
cy = 0; |
||||
lt = 0; |
||||
rt = 0; |
||||
|
||||
//Write command to controller
|
||||
rmt_write_items(rmt_tx.channel, items, 25, 0); |
||||
rmt_rx_start(rmt_rx.channel, 1); |
||||
|
||||
vTaskDelay(6); //6ms between sample
|
||||
|
||||
rmt_item32_t* item = (rmt_item32_t*) (RMT_CHANNEL_MEM(rmt_rx.channel)); |
||||
|
||||
//Check first 3 bits and high bit at index 33
|
||||
if(item[33].duration0 == 1 && item[27].duration0 == 1 && item[26].duration0 == 3 && item[25].duration0 == 3) |
||||
{ |
||||
|
||||
//Button report: first item is item[25]
|
||||
//0 0 1 S Y X B A
|
||||
//1 L R Z U D R L
|
||||
//Joystick X (8bit)
|
||||
//Joystick Y (8bit)
|
||||
//C-Stick X (8bit)
|
||||
//C-Stick Y (8bit)
|
||||
//L Trigger Analog (8/4bit)
|
||||
//R Trigger Analog (8/4bit)
|
||||
|
||||
if(item[32].duration0 == 1) but1 += 0x08;// A
|
||||
if(item[31].duration0 == 1) but1 += 0x04;// B
|
||||
if(item[30].duration0 == 1) but1 += 0x02;// X
|
||||
if(item[29].duration0 == 1) but1 += 0x01;// Y
|
||||
|
||||
if(item[28].duration0 == 1) but2 += 0x02;// START/PLUS
|
||||
|
||||
//DPAD
|
||||
if(item[40].duration0 == 1) but3 += 0x08;// L
|
||||
if(item[39].duration0 == 1) but3 += 0x04;// R
|
||||
if(item[38].duration0 == 1) but3 += 0x01;// D
|
||||
if(item[37].duration0 == 1) but3 += 0x02;// U
|
||||
|
||||
if(item[35].duration0 == 1) but1 += 0x80;// ZR
|
||||
if(item[34].duration0 == 1) but3 += 0x80;// ZL
|
||||
//Buttons
|
||||
if(item[36].duration0 == 1) |
||||
{ |
||||
but1 += 0x40;// Z
|
||||
// if(but3 == 0x80) { but3 += 0x40;}
|
||||
if(but2 == 0x02) { but2 = 0x01; } // Minus = Z + Start
|
||||
if(but3 == 0x02) { but2 = 0x10; } // Home = Z + Up
|
||||
} |
||||
|
||||
//LEFT STICK X
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if(item[x+41].duration0 == 1) |
||||
{ |
||||
lx += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
|
||||
//LEFT STICK Y
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if(item[x+49].duration0 == 1) |
||||
{ |
||||
ly += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
|
||||
//C STICK X
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if(item[x+57].duration0 == 1) |
||||
{ |
||||
cx += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
|
||||
//C STICK Y
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if(item[x+65].duration0 == 1) |
||||
{ |
||||
cy += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
|
||||
/// Analog triggers here -- Ignore for Switch :/
|
||||
/*
|
||||
//R AN
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if(item[x+73].duration0 == 1) |
||||
{ |
||||
rt += pow(2, 8-x-1); |
||||
} |
||||
} |
||||
|
||||
//L AN
|
||||
for(int x = 8; x > -1; x--) |
||||
{ |
||||
if(item[x+81].duration0 == 1) |
||||
{ |
||||
lt += pow(2, 8-x-1); |
||||
} |
||||
}*/ |
||||
/////
|
||||
xSemaphoreTake(xSemaphore, portMAX_DELAY); |
||||
but1_send = but1; |
||||
but2_send = but2; |
||||
but3_send = but3; |
||||
lx_send = lx + lxcalib; |
||||
ly_send = ly + lycalib; |
||||
cx_send = cx + cxcalib; |
||||
cy_send = cy + cycalib; |
||||
lt_send = 0;//lt;//left trigger analog
|
||||
rt_send = 0;//rt;//right trigger analog
|
||||
xSemaphoreGive(xSemaphore); |
||||
}else{ |
||||
//log_info("GameCube controller read fail");
|
||||
} |
||||
|
||||
} |
||||
} |
||||
SemaphoreHandle_t xSemaphore; |
||||
bool connected = false; |
||||
int paired = 0; |
||||
TaskHandle_t SendingHandle = NULL; |
||||
TaskHandle_t BlinkHandle = NULL; |
||||
//Switch button report example // batlvl Buttons Lstick Rstick
|
||||
//static uint8_t report30[] = {0x30, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
||||
uint8_t timer = 0; |
||||
static uint8_t report30[] = { |
||||
0x30, |
||||
0x0, |
||||
0x80, |
||||
0,//but1
|
||||
0,//but2
|
||||
0,//but3
|
||||
0,//Ls
|
||||
0,//Ls
|
||||
0,//Ls
|
||||
0,//Rs
|
||||
0,//Rs
|
||||
0,//Rs
|
||||
0x08 |
||||
}; |
||||
|
||||
void send_buttons() |
||||
{ |
||||
xSemaphoreTake(xSemaphore, portMAX_DELAY); |
||||
report30[1] = timer; |
||||
//buttons
|
||||
report30[3] = but1_send; |
||||
report30[4] = but2_send; |
||||
report30[5] = but3_send; |
||||
//encode left stick
|
||||
report30[6] = (lx_send << 4) & 0xF0; |
||||
report30[7] = (lx_send & 0xF0) >> 4; |
||||
report30[8] = ly_send; |
||||
//encode right stick
|
||||
report30[9] = (cx_send << 4) & 0xF0; |
||||
report30[10] = (cx_send & 0xF0) >> 4; |
||||
report30[11] = cy_send; |
||||
xSemaphoreGive(xSemaphore); |
||||
timer+=1; |
||||
if(timer == 255) |
||||
timer = 0; |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(report30), report30); |
||||
|
||||
if(!paired) |
||||
vTaskDelay(100); |
||||
else |
||||
vTaskDelay(15); |
||||
|
||||
|
||||
} |
||||
const uint8_t hid_descriptor_gamecube[] = { |
||||
0x05, 0x01, // Usage Page (Generic Desktop Ctrls)
|
||||
0x09, 0x05, // Usage (Game Pad)
|
||||
0xA1, 0x01, // Collection (Application)
|
||||
//Padding
|
||||
0x95, 0x03, // REPORT_COUNT = 3
|
||||
0x75, 0x08, // REPORT_SIZE = 8
|
||||
0x81, 0x03, // INPUT = Cnst,Var,Abs
|
||||
//Sticks
|
||||
0x09, 0x30, // Usage (X)
|
||||
0x09, 0x31, // Usage (Y)
|
||||
0x09, 0x32, // Usage (Z)
|
||||
0x09, 0x35, // Usage (Rz)
|
||||
0x15, 0x00, // Logical Minimum (0)
|
||||
0x26, 0xFF, 0x00, // Logical Maximum (255)
|
||||
0x75, 0x08, // Report Size (8)
|
||||
0x95, 0x04, // Report Count (4)
|
||||
0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position)
|
||||
//DPAD
|
||||
0x09, 0x39, // Usage (Hat switch)
|
||||
0x15, 0x00, // Logical Minimum (0)
|
||||
0x25, 0x07, // Logical Maximum (7)
|
||||
0x35, 0x00, // Physical Minimum (0)
|
||||
0x46, 0x3B, 0x01, // Physical Maximum (315)
|
||||
0x65, 0x14, // Unit (System: English Rotation, Length: Centimeter)
|
||||
0x75, 0x04, // Report Size (4)
|
||||
0x95, 0x01, // Report Count (1)
|
||||
0x81, 0x42, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,Null State)
|
||||
//Buttons
|
||||
0x65, 0x00, // Unit (None)
|
||||
0x05, 0x09, // Usage Page (Button)
|
||||
0x19, 0x01, // Usage Minimum (0x01)
|
||||
0x29, 0x0E, // Usage Maximum (0x0E)
|
||||
0x15, 0x00, // Logical Minimum (0)
|
||||
0x25, 0x01, // Logical Maximum (1)
|
||||
0x75, 0x01, // Report Size (1)
|
||||
0x95, 0x0E, // Report Count (14)
|
||||
0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position)
|
||||
//Padding
|
||||
0x06, 0x00, 0xFF, // Usage Page (Vendor Defined 0xFF00)
|
||||
0x09, 0x20, // Usage (0x20)
|
||||
0x75, 0x06, // Report Size (6)
|
||||
0x95, 0x01, // Report Count (1)
|
||||
0x15, 0x00, // Logical Minimum (0)
|
||||
0x25, 0x7F, // Logical Maximum (127)
|
||||
0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position)
|
||||
//Triggers
|
||||
0x05, 0x01, // Usage Page (Generic Desktop Ctrls)
|
||||
0x09, 0x33, // Usage (Rx)
|
||||
0x09, 0x34, // Usage (Ry)
|
||||
0x15, 0x00, // Logical Minimum (0)
|
||||
0x26, 0xFF, 0x00, // Logical Maximum (255)
|
||||
0x75, 0x08, // Report Size (8)
|
||||
0x95, 0x02, // Report Count (2)
|
||||
0x81, 0x02, |
||||
0xc0 |
||||
}; |
||||
int hid_descriptor_gc_len = sizeof(hid_descriptor_gamecube); |
||||
///Switch Replies
|
||||
static uint8_t reply02[] = {0x21, 0x01, 0x40, 0x00, 0x00, 0x00, 0xe6, 0x27, 0x78, 0xab, 0xd7, 0x76, 0x00, 0x82, 0x02, 0x03, 0x48, 0x03, 0x02, 0xD8, 0xA0, 0x1D, 0x40, 0x15, 0x66, 0x03, 0x00, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 |
||||
, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 }; |
||||
static uint8_t reply08[] = {0x21, 0x02, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 |
||||
, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 }; |
||||
static uint8_t reply03[] = {0x21, 0x05, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 |
||||
, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 }; |
||||
static uint8_t reply04[] = {0x21, 0x06, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x83, 0x04, 0x00, 0x6a, 0x01, 0xbb, 0x01, 0x93, 0x01, 0x95, 0x01, 0x00, 0x00, 0x00, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 |
||||
, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00}; |
||||
static uint8_t reply1060[] = {0x21, 0x03, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x00, 0x60, 0x00, 0x00, 0x10, 0x00, 0x00 , 0x00, 0x00, 0x00, 0x00, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 |
||||
, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 }; |
||||
static uint8_t reply1050[] = { 0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x50, 0x60, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,0x00, 0x00, 0x00, 0x00, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 |
||||
, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 }; |
||||
static uint8_t reply1080[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x80, 0x60, 0x00, 0x00, 0x18, 0x5e, 0x01, 0x00, 0x00, 0xf1, 0x0f, |
||||
0x19, 0xd0, 0x4c, 0xae, 0x40, 0xe1, |
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
||||
0x00, 0x00}; |
||||
static uint8_t reply1098[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x98, 0x60, 0x00, 0x00, 0x12, 0x19, 0xd0, 0x4c, 0xae, 0x40, 0xe1, |
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
||||
0x00, 0x00}; |
||||
//User analog stick calib
|
||||
static uint8_t reply1010[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x10, 0x80, 0x00, 0x00, 0x18, 0x00, 0x00}; |
||||
static uint8_t reply103D[] = {0x21, 0x05, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x3D, 0x60, 0x00, 0x00, 0x19, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00}; |
||||
static uint8_t reply1020[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x20, 0x60, 0x00, 0x00, 0x18, 0x00, 0x00}; |
||||
static uint8_t reply4001[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
||||
static uint8_t reply4801[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
||||
static uint8_t reply3001[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
||||
static uint8_t reply3333[] = {0x21, 0x03, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 , 0x00, 0x00, 0x00, 0x00, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 |
||||
, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00, 0x00 }; |
||||
|
||||
|
||||
|
||||
// sending bluetooth values every 15ms
|
||||
void send_task(void* pvParameters) { |
||||
const char* TAG = "send_task"; |
||||
ESP_LOGI(TAG, "Sending hid reports on core %d\n", xPortGetCoreID() ); |
||||
while(1) |
||||
{ |
||||
send_buttons(); |
||||
} |
||||
} |
||||
|
||||
// callback for notifying when hidd application is registered or not registered
|
||||
void application_cb(esp_bd_addr_t bd_addr, esp_hidd_application_state_t state) { |
||||
const char* TAG = "application_cb"; |
||||
|
||||
switch(state) { |
||||
case ESP_HIDD_APP_STATE_NOT_REGISTERED: |
||||
ESP_LOGI(TAG, "app not registered"); |
||||
break; |
||||
case ESP_HIDD_APP_STATE_REGISTERED: |
||||
ESP_LOGI(TAG, "app is now registered!"); |
||||
if(bd_addr == NULL) { |
||||
ESP_LOGI(TAG, "bd_addr is null..."); |
||||
break; |
||||
} |
||||
break; |
||||
default: |
||||
ESP_LOGW(TAG, "unknown app state %i", state); |
||||
break; |
||||
} |
||||
} |
||||
//LED blink
|
||||
void startBlink() |
||||
{ |
||||
while(1) { |
||||
gpio_set_level(LED_GPIO, 0); |
||||
vTaskDelay(150); |
||||
gpio_set_level(LED_GPIO, 1); |
||||
vTaskDelay(150); |
||||
gpio_set_level(LED_GPIO, 0); |
||||
vTaskDelay(150); |
||||
gpio_set_level(LED_GPIO, 1); |
||||
vTaskDelay(1000); |
||||
} |
||||
vTaskDelete(NULL); |
||||
} |
||||
// callback for hidd connection changes
|
||||
void connection_cb(esp_bd_addr_t bd_addr, esp_hidd_connection_state_t state) { |
||||
const char* TAG = "connection_cb"; |
||||
|
||||
switch(state) { |
||||
case ESP_HIDD_CONN_STATE_CONNECTED: |
||||
ESP_LOGI(TAG, "connected to %02x:%02x:%02x:%02x:%02x:%02x", |
||||
bd_addr[0], bd_addr[1], bd_addr[2], bd_addr[3], bd_addr[4], bd_addr[5]); |
||||
ESP_LOGI(TAG, "setting bluetooth non connectable"); |
||||
esp_bt_gap_set_scan_mode(ESP_BT_NON_CONNECTABLE, ESP_BT_NON_DISCOVERABLE); |
||||
|
||||
//clear blinking LED - solid
|
||||
vTaskDelete(BlinkHandle); |
||||
BlinkHandle = NULL; |
||||
gpio_set_level(LED_GPIO, 1); |
||||
//start solid
|
||||
xSemaphoreTake(xSemaphore, portMAX_DELAY); |
||||
connected = true; |
||||
xSemaphoreGive(xSemaphore); |
||||
//restart send_task
|
||||
if(SendingHandle != NULL) |
||||
{ |
||||
vTaskDelete(SendingHandle); |
||||
SendingHandle = NULL; |
||||
} |
||||
xTaskCreatePinnedToCore(send_task, "send_task", 2048, NULL, 2, &SendingHandle, 0); |
||||
break; |
||||
case ESP_HIDD_CONN_STATE_CONNECTING: |
||||
ESP_LOGI(TAG, "connecting"); |
||||
break; |
||||
case ESP_HIDD_CONN_STATE_DISCONNECTED: |
||||
xTaskCreate(startBlink, "blink_task", 1024, NULL, 1, &BlinkHandle); |
||||
//start blink
|
||||
ESP_LOGI(TAG, "disconnected from %02x:%02x:%02x:%02x:%02x:%02x", |
||||
bd_addr[0], bd_addr[1], bd_addr[2], bd_addr[3], bd_addr[4], bd_addr[5]); |
||||
ESP_LOGI(TAG, "making self discoverable"); |
||||
paired = 0; |
||||
esp_bt_gap_set_scan_mode(ESP_BT_CONNECTABLE, ESP_BT_GENERAL_DISCOVERABLE); |
||||
xSemaphoreTake(xSemaphore, portMAX_DELAY); |
||||
connected = false; |
||||
xSemaphoreGive(xSemaphore); |
||||
break; |
||||
case ESP_HIDD_CONN_STATE_DISCONNECTING: |
||||
ESP_LOGI(TAG, "disconnecting"); |
||||
break; |
||||
default: |
||||
ESP_LOGI(TAG, "unknown connection status"); |
||||
break; |
||||
} |
||||
} |
||||
|
||||
//callback for discovering
|
||||
void get_device_cb() |
||||
{ |
||||
ESP_LOGI("hi", "found a device"); |
||||
} |
||||
|
||||
// callback for when hid host requests a report
|
||||
void get_report_cb(uint8_t type, uint8_t id, uint16_t buffer_size) { |
||||
const char* TAG = "get_report_cb"; |
||||
ESP_LOGI(TAG, "got a get_report request from host"); |
||||
} |
||||
|
||||
// callback for when hid host sends a report
|
||||
void set_report_cb(uint8_t type, uint8_t id, uint16_t len, uint8_t* p_data) { |
||||
const char* TAG = "set_report_cb"; |
||||
ESP_LOGI(TAG, "got a report from host"); |
||||
} |
||||
|
||||
// callback for when hid host requests a protocol change
|
||||
void set_protocol_cb(uint8_t protocol) { |
||||
const char* TAG = "set_protocol_cb"; |
||||
ESP_LOGI(TAG, "got a set_protocol request from host"); |
||||
} |
||||
|
||||
// callback for when hid host sends interrupt data
|
||||
void intr_data_cb(uint8_t report_id, uint16_t len, uint8_t* p_data) { |
||||
const char* TAG = "intr_data_cb"; |
||||
//switch pairing sequence
|
||||
if(len == 49) |
||||
{ |
||||
if(p_data[10] == 2) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply02), reply02); |
||||
} |
||||
if(p_data[10] == 8) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply08), reply08); |
||||
} |
||||
if(p_data[10] == 16 && p_data[11] == 0 && p_data[12] == 96) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1060), reply1060); |
||||
} |
||||
if(p_data[10] == 16 && p_data[11] == 80 && p_data[12] == 96) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1050), reply1050); |
||||
} |
||||
if(p_data[10] == 3) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply03), reply03); |
||||
} |
||||
if(p_data[10] == 4) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply04), reply04); |
||||
} |
||||
if(p_data[10] == 16 && p_data[11] == 128 && p_data[12] == 96) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1080), reply1080); |
||||
} |
||||
if(p_data[10] == 16 && p_data[11] == 152 && p_data[12] == 96) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1098), reply1098); |
||||
} |
||||
if(p_data[10] == 16 && p_data[11] == 16 && p_data[12] == 128) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1010), reply1010); |
||||
} |
||||
if(p_data[10] == 16 && p_data[11] == 61 && p_data[12] == 96) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply103D), reply103D); |
||||
} |
||||
if(p_data[10] == 16 && p_data[11] == 32 && p_data[12] == 96) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1020), reply1020); |
||||
} |
||||
if(p_data[10] == 64 && p_data[11] == 1) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply4001), reply4001); |
||||
} |
||||
if(p_data[10] == 72 && p_data[11] == 1) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply4801), reply4801); |
||||
} |
||||
if(p_data[10] == 48 && p_data[11] == 1) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply3001), reply3001); |
||||
} |
||||
|
||||
if(p_data[10] == 33 && p_data[11] == 33) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply3333), reply3333); |
||||
paired = 1; |
||||
|
||||
} |
||||
if(p_data[10] == 64 && p_data[11] == 2) |
||||
{ |
||||
esp_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply4001), reply4001); |
||||
} |
||||
//ESP_LOGI(TAG, "got an interrupt report from host, subcommand: %d %d %d Length: %d", p_data[10], p_data[11], p_data[12], len);
|
||||
} |
||||
else |
||||
{ |
||||
|
||||
//ESP_LOGI("heap size:", "%d", xPortGetFreeHeapSize());
|
||||
//ESP_LOGI(TAG, "pairing packet size != 49, subcommand: %d %d %d Length: %d", p_data[10], p_data[11], p_data[12], len);
|
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
// callback for when hid host does a virtual cable unplug
|
||||
void vc_unplug_cb(void) { |
||||
const char* TAG = "vc_unplug_cb"; |
||||
ESP_LOGI(TAG, "host did a virtual cable unplug"); |
||||
} |
||||
|
||||
void print_bt_address() { |
||||
const char* TAG = "bt_address"; |
||||
const uint8_t* bd_addr; |
||||
|
||||
bd_addr = esp_bt_dev_get_address(); |
||||
ESP_LOGI(TAG, "my bluetooth address is %02X:%02X:%02X:%02X:%02X:%02X", |
||||
bd_addr[0], bd_addr[1], bd_addr[2], bd_addr[3], bd_addr[4], bd_addr[5]); |
||||
} |
||||
|
||||
#define SPP_TAG "tag" |
||||
static void esp_bt_gap_cb(esp_bt_gap_cb_event_t event, esp_bt_gap_cb_param_t *param) |
||||
{ |
||||
switch(event){ |
||||
case ESP_BT_GAP_DISC_RES_EVT: |
||||
ESP_LOGI(SPP_TAG, "ESP_BT_GAP_DISC_RES_EVT"); |
||||
esp_log_buffer_hex(SPP_TAG, param->disc_res.bda, ESP_BD_ADDR_LEN); |
||||
break; |
||||
case ESP_BT_GAP_DISC_STATE_CHANGED_EVT: |
||||
ESP_LOGI(SPP_TAG, "ESP_BT_GAP_DISC_STATE_CHANGED_EVT"); |
||||
break; |
||||
case ESP_BT_GAP_RMT_SRVCS_EVT: |
||||
ESP_LOGI(SPP_TAG, "ESP_BT_GAP_RMT_SRVCS_EVT"); |
||||
ESP_LOGI(SPP_TAG, "%d", param->rmt_srvcs.num_uuids); |
||||
break; |
||||
case ESP_BT_GAP_RMT_SRVC_REC_EVT: |
||||
ESP_LOGI(SPP_TAG, "ESP_BT_GAP_RMT_SRVC_REC_EVT"); |
||||
break; |
||||
case ESP_BT_GAP_AUTH_CMPL_EVT:{ |
||||
if (param->auth_cmpl.stat == ESP_BT_STATUS_SUCCESS) { |
||||
ESP_LOGI(SPP_TAG, "authentication success: %s", param->auth_cmpl.device_name); |
||||
esp_log_buffer_hex(SPP_TAG, param->auth_cmpl.bda, ESP_BD_ADDR_LEN); |
||||
} else { |
||||
ESP_LOGE(SPP_TAG, "authentication failed, status:%d", param->auth_cmpl.stat); |
||||
} |
||||
break; |
||||
} |
||||
|
||||
default: |
||||
break; |
||||
} |
||||
} |
||||
void app_main() { |
||||
//GameCube Contoller reading init
|
||||
rmt_tx_init(); |
||||
rmt_rx_init(); |
||||
xTaskCreatePinnedToCore(get_buttons, "gbuttons", 2048, NULL, 1, NULL, 1); |
||||
//flash LED
|
||||
vTaskDelay(100); |
||||
gpio_set_level(LED_GPIO, 0); |
||||
vTaskDelay(100); |
||||
gpio_set_level(LED_GPIO, 1); |
||||
vTaskDelay(100); |
||||
gpio_set_level(LED_GPIO, 0); |
||||
vTaskDelay(100); |
||||
gpio_set_level(LED_GPIO, 1); |
||||
vTaskDelay(100); |
||||
gpio_set_level(LED_GPIO, 0); |
||||
const char* TAG = "app_main"; |
||||
esp_err_t ret; |
||||
static esp_hidd_callbacks_t callbacks; |
||||
static esp_hidd_app_param_t app_param; |
||||
static esp_hidd_qos_param_t both_qos; |
||||
|
||||
xSemaphore = xSemaphoreCreateMutex(); |
||||
|
||||
gpio_config_t io_conf; |
||||
//disable interrupt
|
||||
io_conf.intr_type = GPIO_PIN_INTR_DISABLE; |
||||
//set as output mode
|
||||
io_conf.mode = GPIO_MODE_OUTPUT; |
||||
//bit mask of the pins that you want to set,e.g.GPIO18/19
|
||||
io_conf.pin_bit_mask = PIN_SEL; |
||||
//disable pull-down mode
|
||||
io_conf.pull_down_en = 0; |
||||
//disable pull-up mode
|
||||
io_conf.pull_up_en = 0; |
||||
//configure GPIO with the given settings
|
||||
gpio_config(&io_conf); |
||||
//gap_callbacks = get_device_cb;
|
||||
|
||||
|
||||
app_param.name = "BlueCubeMod"; |
||||
app_param.description = "BlueCubeMod Example"; |
||||
app_param.provider = "ESP32"; |
||||
app_param.subclass = 0x8; |
||||
app_param.desc_list = hid_descriptor_gamecube; |
||||
app_param.desc_list_len = hid_descriptor_gc_len; |
||||
memset(&both_qos, 0, sizeof(esp_hidd_qos_param_t)); |
||||
|
||||
callbacks.application_state_cb = application_cb; |
||||
callbacks.connection_state_cb = connection_cb; |
||||
callbacks.get_report_cb = get_report_cb; |
||||
callbacks.set_report_cb = set_report_cb; |
||||
callbacks.set_protocol_cb = set_protocol_cb; |
||||
callbacks.intr_data_cb = intr_data_cb; |
||||
callbacks.vc_unplug_cb = vc_unplug_cb; |
||||
|
||||
ret = nvs_flash_init(); |
||||
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) { |
||||
ESP_ERROR_CHECK(nvs_flash_erase()); |
||||
ret = nvs_flash_init(); |
||||
} |
||||
ESP_ERROR_CHECK( ret ); |
||||
|
||||
ESP_ERROR_CHECK(esp_bt_controller_mem_release(ESP_BT_MODE_BLE)); |
||||
|
||||
esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT(); |
||||
esp_bt_mem_release(ESP_BT_MODE_BLE); |
||||
if ((ret = esp_bt_controller_init(&bt_cfg)) != ESP_OK) { |
||||
ESP_LOGE(TAG, "initialize controller failed: %s\n", esp_err_to_name(ret)); |
||||
return; |
||||
} |
||||
|
||||
if ((ret = esp_bt_controller_enable(ESP_BT_MODE_CLASSIC_BT)) != ESP_OK) { |
||||
ESP_LOGE(TAG, "enable controller failed: %s\n", esp_err_to_name(ret)); |
||||
return; |
||||
} |
||||
|
||||
if ((ret = esp_bluedroid_init()) != ESP_OK) { |
||||
ESP_LOGE(TAG, "initialize bluedroid failed: %s\n", esp_err_to_name(ret)); |
||||
return; |
||||
} |
||||
|
||||
if ((ret = esp_bluedroid_enable()) != ESP_OK) { |
||||
ESP_LOGE(TAG, "enable bluedroid failed: %s\n", esp_err_to_name(ret)); |
||||
return; |
||||
} |
||||
esp_bt_gap_register_callback(esp_bt_gap_cb); |
||||
ESP_LOGI(TAG, "setting hid parameters"); |
||||
esp_hid_device_register_app(&app_param, &both_qos, &both_qos); |
||||
|
||||
ESP_LOGI(TAG, "starting hid device"); |
||||
esp_hid_device_init(&callbacks); |
||||
|
||||
ESP_LOGI(TAG, "setting device name"); |
||||
esp_bt_dev_set_device_name("Pro Controller"); |
||||
|
||||
ESP_LOGI(TAG, "setting to connectable, discoverable"); |
||||
esp_bt_gap_set_scan_mode(ESP_BT_CONNECTABLE, ESP_BT_GENERAL_DISCOVERABLE); |
||||
//start blinking
|
||||
xTaskCreate(startBlink, "blink_task", 1024, NULL, 1, &BlinkHandle); |
||||
|
||||
|
||||
} |
@ -0,0 +1,705 @@
@@ -0,0 +1,705 @@
|
||||
# |
||||
# Automatically generated file. DO NOT EDIT. |
||||
# Espressif IoT Development Framework (ESP-IDF) Project Configuration |
||||
# |
||||
CONFIG_IDF_TARGET="esp32" |
||||
|
||||
# |
||||
# SDK tool configuration |
||||
# |
||||
CONFIG_SDK_TOOLPREFIX="xtensa-esp32-elf-" |
||||
CONFIG_SDK_PYTHON="python" |
||||
CONFIG_SDK_MAKE_WARN_UNDEFINED_VARIABLES=y |
||||
CONFIG_APP_COMPILE_TIME_DATE=y |
||||
# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set |
||||
# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set |
||||
# CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set |
||||
# CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set |
||||
# CONFIG_LOG_BOOTLOADER_LEVEL_WARN is not set |
||||
CONFIG_LOG_BOOTLOADER_LEVEL_INFO=y |
||||
# CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set |
||||
# CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set |
||||
CONFIG_LOG_BOOTLOADER_LEVEL=3 |
||||
# CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V is not set |
||||
CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y |
||||
# CONFIG_BOOTLOADER_FACTORY_RESET is not set |
||||
# CONFIG_BOOTLOADER_APP_TEST is not set |
||||
CONFIG_BOOTLOADER_WDT_ENABLE=y |
||||
# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set |
||||
CONFIG_BOOTLOADER_WDT_TIME_MS=9000 |
||||
# CONFIG_APP_ROLLBACK_ENABLE is not set |
||||
# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set |
||||
# CONFIG_SECURE_BOOT_ENABLED is not set |
||||
# CONFIG_FLASH_ENCRYPTION_ENABLED is not set |
||||
CONFIG_ESPTOOLPY_PORT="/dev/cu.SLAB_USBtoUART" |
||||
# CONFIG_ESPTOOLPY_BAUD_115200B is not set |
||||
# CONFIG_ESPTOOLPY_BAUD_230400B is not set |
||||
CONFIG_ESPTOOLPY_BAUD_921600B=y |
||||
# CONFIG_ESPTOOLPY_BAUD_2MB is not set |
||||
# CONFIG_ESPTOOLPY_BAUD_OTHER is not set |
||||
CONFIG_ESPTOOLPY_BAUD_OTHER_VAL=115200 |
||||
CONFIG_ESPTOOLPY_BAUD=921600 |
||||
CONFIG_ESPTOOLPY_COMPRESSED=y |
||||
# CONFIG_FLASHMODE_QIO is not set |
||||
# CONFIG_FLASHMODE_QOUT is not set |
||||
CONFIG_FLASHMODE_DIO=y |
||||
# CONFIG_FLASHMODE_DOUT is not set |
||||
CONFIG_ESPTOOLPY_FLASHMODE="dio" |
||||
# CONFIG_ESPTOOLPY_FLASHFREQ_80M is not set |
||||
CONFIG_ESPTOOLPY_FLASHFREQ_40M=y |
||||
# CONFIG_ESPTOOLPY_FLASHFREQ_26M is not set |
||||
# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set |
||||
CONFIG_ESPTOOLPY_FLASHFREQ="40m" |
||||
# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set |
||||
# CONFIG_ESPTOOLPY_FLASHSIZE_2MB is not set |
||||
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y |
||||
# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set |
||||
# CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set |
||||
CONFIG_ESPTOOLPY_FLASHSIZE="4MB" |
||||
CONFIG_ESPTOOLPY_FLASHSIZE_DETECT=y |
||||
CONFIG_ESPTOOLPY_BEFORE_RESET=y |
||||
# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set |
||||
CONFIG_ESPTOOLPY_BEFORE="default_reset" |
||||
CONFIG_ESPTOOLPY_AFTER_RESET=y |
||||
# CONFIG_ESPTOOLPY_AFTER_NORESET is not set |
||||
CONFIG_ESPTOOLPY_AFTER="hard_reset" |
||||
# CONFIG_MONITOR_BAUD_9600B is not set |
||||
# CONFIG_MONITOR_BAUD_57600B is not set |
||||
CONFIG_MONITOR_BAUD_115200B=y |
||||
# CONFIG_MONITOR_BAUD_230400B is not set |
||||
# CONFIG_MONITOR_BAUD_921600B is not set |
||||
# CONFIG_MONITOR_BAUD_2MB is not set |
||||
# CONFIG_MONITOR_BAUD_OTHER is not set |
||||
CONFIG_MONITOR_BAUD_OTHER_VAL=115200 |
||||
CONFIG_MONITOR_BAUD=115200 |
||||
CONFIG_PARTITION_TABLE_SINGLE_APP=y |
||||
# CONFIG_PARTITION_TABLE_TWO_OTA is not set |
||||
# CONFIG_PARTITION_TABLE_CUSTOM is not set |
||||
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" |
||||
CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" |
||||
CONFIG_PARTITION_TABLE_OFFSET=0x8000 |
||||
CONFIG_PARTITION_TABLE_MD5=y |
||||
CONFIG_OPTIMIZATION_LEVEL_DEBUG=y |
||||
# CONFIG_OPTIMIZATION_LEVEL_RELEASE is not set |
||||
CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y |
||||
# CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set |
||||
# CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set |
||||
# CONFIG_CXX_EXCEPTIONS is not set |
||||
CONFIG_STACK_CHECK_NONE=y |
||||
# CONFIG_STACK_CHECK_NORM is not set |
||||
# CONFIG_STACK_CHECK_STRONG is not set |
||||
# CONFIG_STACK_CHECK_ALL is not set |
||||
# CONFIG_STACK_CHECK is not set |
||||
# CONFIG_WARN_WRITE_STRINGS is not set |
||||
# CONFIG_DISABLE_GCC8_WARNINGS is not set |
||||
# CONFIG_ESP32_APPTRACE_DEST_TRAX is not set |
||||
CONFIG_ESP32_APPTRACE_DEST_NONE=y |
||||
# CONFIG_ESP32_APPTRACE_ENABLE is not set |
||||
CONFIG_ESP32_APPTRACE_LOCK_ENABLE=y |
||||
CONFIG_BT_ENABLED=y |
||||
# CONFIG_BTDM_CONTROLLER_MODE_BLE_ONLY is not set |
||||
CONFIG_BTDM_CONTROLLER_MODE_BR_EDR_ONLY=y |
||||
# CONFIG_BTDM_CONTROLLER_MODE_BTDM is not set |
||||
CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN=4 |
||||
CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN=2 |
||||
CONFIG_BTDM_CONTROLLER_BLE_MAX_CONN_EFF=0 |
||||
CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN_EFF=4 |
||||
CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN_EFF=2 |
||||
CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE_0=y |
||||
# CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE_1 is not set |
||||
CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE=0 |
||||
CONFIG_BTDM_CONTROLLER_HCI_MODE_VHCI=y |
||||
# CONFIG_BTDM_CONTROLLER_HCI_MODE_UART_H4 is not set |
||||
CONFIG_BTDM_CONTROLLER_MODEM_SLEEP=y |
||||
CONFIG_BTDM_MODEM_SLEEP_MODE_ORIG=y |
||||
# CONFIG_BTDM_MODEM_SLEEP_MODE_EVED is not set |
||||
CONFIG_BTDM_LPCLK_SEL_MAIN_XTAL=y |
||||
CONFIG_BLUEDROID_ENABLED=y |
||||
CONFIG_BLUEDROID_PINNED_TO_CORE_0=y |
||||
# CONFIG_BLUEDROID_PINNED_TO_CORE_1 is not set |
||||
CONFIG_BLUEDROID_PINNED_TO_CORE=0 |
||||
CONFIG_BTC_TASK_STACK_SIZE=4096 |
||||
CONFIG_BTU_TASK_STACK_SIZE=4096 |
||||
# CONFIG_BLUEDROID_MEM_DEBUG is not set |
||||
CONFIG_CLASSIC_BT_ENABLED=y |
||||
# CONFIG_A2DP_ENABLE is not set |
||||
# CONFIG_BT_SPP_ENABLED is not set |
||||
# CONFIG_HFP_ENABLE is not set |
||||
CONFIG_BT_SSP_ENABLED=y |
||||
CONFIG_BT_HID_DEV_ENABLED=y |
||||
# CONFIG_BT_STACK_NO_LOG is not set |
||||
# CONFIG_HCI_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_HCI_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_HCI_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_HCI_TRACE_LEVEL_API is not set |
||||
# CONFIG_HCI_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_HCI_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_HCI_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_HCI_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_BTM_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_BTM_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_BTM_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_BTM_TRACE_LEVEL_API is not set |
||||
# CONFIG_BTM_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_BTM_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_BTM_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_BTM_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_L2CAP_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_L2CAP_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_L2CAP_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_L2CAP_TRACE_LEVEL_API is not set |
||||
# CONFIG_L2CAP_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_L2CAP_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_L2CAP_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_L2CAP_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_RFCOMM_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_RFCOMM_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_RFCOMM_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_RFCOMM_TRACE_LEVEL_API is not set |
||||
# CONFIG_RFCOMM_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_RFCOMM_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_RFCOMM_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_RFCOMM_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_SDP_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_SDP_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_SDP_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_SDP_TRACE_LEVEL_API is not set |
||||
# CONFIG_SDP_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_SDP_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_SDP_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_SDP_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_GAP_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_GAP_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_GAP_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_GAP_TRACE_LEVEL_API is not set |
||||
# CONFIG_GAP_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_GAP_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_GAP_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_GAP_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_BNEP_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_BNEP_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_BNEP_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_BNEP_TRACE_LEVEL_API is not set |
||||
# CONFIG_BNEP_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_BNEP_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_BNEP_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_BNEP_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_PAN_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_PAN_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_PAN_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_PAN_TRACE_LEVEL_API is not set |
||||
# CONFIG_PAN_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_PAN_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_PAN_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_PAN_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_A2D_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_A2D_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_A2D_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_A2D_TRACE_LEVEL_API is not set |
||||
# CONFIG_A2D_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_A2D_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_A2D_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_A2D_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_AVDT_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_AVDT_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_AVDT_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_AVDT_TRACE_LEVEL_API is not set |
||||
# CONFIG_AVDT_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_AVDT_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_AVDT_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_AVDT_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_AVCT_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_AVCT_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_AVCT_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_AVCT_TRACE_LEVEL_API is not set |
||||
# CONFIG_AVCT_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_AVCT_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_AVCT_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_AVCT_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_AVRC_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_AVRC_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_AVRC_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_AVRC_TRACE_LEVEL_API is not set |
||||
# CONFIG_AVRC_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_AVRC_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_AVRC_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_AVRC_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_MCA_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_MCA_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_MCA_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_MCA_TRACE_LEVEL_API is not set |
||||
# CONFIG_MCA_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_MCA_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_MCA_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_MCA_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_HID_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_HID_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_HID_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_HID_TRACE_LEVEL_API is not set |
||||
# CONFIG_HID_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_HID_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_HID_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_HID_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_HIDD_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_HIDD_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_HIDD_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_HIDD_TRACE_LEVEL_API is not set |
||||
# CONFIG_HIDD_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_HIDD_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_HIDD_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_HIDD_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_APPL_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_APPL_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_APPL_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_APPL_TRACE_LEVEL_API is not set |
||||
# CONFIG_APPL_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_APPL_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_APPL_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_APPL_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_GATT_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_GATT_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_GATT_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_GATT_TRACE_LEVEL_API is not set |
||||
# CONFIG_GATT_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_GATT_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_GATT_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_GATT_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_SMP_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_SMP_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_SMP_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_SMP_TRACE_LEVEL_API is not set |
||||
# CONFIG_SMP_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_SMP_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_SMP_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_SMP_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_BTIF_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_BTIF_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_BTIF_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_BTIF_TRACE_LEVEL_API is not set |
||||
# CONFIG_BTIF_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_BTIF_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_BTIF_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_BTIF_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_BTC_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_BTC_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_BTC_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_BTC_TRACE_LEVEL_API is not set |
||||
# CONFIG_BTC_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_BTC_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_BTC_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_BTC_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_OSI_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_OSI_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_OSI_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_OSI_TRACE_LEVEL_API is not set |
||||
# CONFIG_OSI_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_OSI_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_OSI_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_OSI_INITIAL_TRACE_LEVEL=2 |
||||
# CONFIG_BLUFI_TRACE_LEVEL_NONE is not set |
||||
# CONFIG_BLUFI_TRACE_LEVEL_ERROR is not set |
||||
CONFIG_BLUFI_TRACE_LEVEL_WARNING=y |
||||
# CONFIG_BLUFI_TRACE_LEVEL_API is not set |
||||
# CONFIG_BLUFI_TRACE_LEVEL_EVENT is not set |
||||
# CONFIG_BLUFI_TRACE_LEVEL_DEBUG is not set |
||||
# CONFIG_BLUFI_TRACE_LEVEL_VERBOSE is not set |
||||
CONFIG_BLUFI_INITIAL_TRACE_LEVEL=2 |
||||
CONFIG_BT_ACL_CONNECTIONS=4 |
||||
# CONFIG_BT_ALLOCATION_FROM_SPIRAM_FIRST is not set |
||||
# CONFIG_BT_BLE_DYNAMIC_ENV_MEMORY is not set |
||||
# CONFIG_BLE_HOST_QUEUE_CONGESTION_CHECK is not set |
||||
CONFIG_SMP_ENABLE=y |
||||
CONFIG_BLE_ESTABLISH_LINK_CONNECTION_TIMEOUT=30 |
||||
CONFIG_BT_RESERVE_DRAM=0xdb5c |
||||
# CONFIG_ADC_FORCE_XPD_FSM is not set |
||||
CONFIG_ADC2_DISABLE_DAC=y |
||||
# CONFIG_SPI_MASTER_IN_IRAM is not set |
||||
CONFIG_SPI_MASTER_ISR_IN_IRAM=y |
||||
# CONFIG_SPI_SLAVE_IN_IRAM is not set |
||||
CONFIG_SPI_SLAVE_ISR_IN_IRAM=y |
||||
# CONFIG_EFUSE_CUSTOM_TABLE is not set |
||||
# CONFIG_EFUSE_VIRTUAL is not set |
||||
# CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE is not set |
||||
CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4=y |
||||
# CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT is not set |
||||
CONFIG_EFUSE_MAX_BLK_LEN=192 |
||||
CONFIG_IDF_TARGET_ESP32=y |
||||
# CONFIG_ESP32_DEFAULT_CPU_FREQ_80 is not set |
||||
CONFIG_ESP32_DEFAULT_CPU_FREQ_160=y |
||||
# CONFIG_ESP32_DEFAULT_CPU_FREQ_240 is not set |
||||
CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=160 |
||||
# CONFIG_SPIRAM_SUPPORT is not set |
||||
# CONFIG_MEMMAP_TRACEMEM is not set |
||||
# CONFIG_MEMMAP_TRACEMEM_TWOBANKS is not set |
||||
# CONFIG_ESP32_TRAX is not set |
||||
CONFIG_TRACEMEM_RESERVE_DRAM=0x0 |
||||
# CONFIG_TWO_UNIVERSAL_MAC_ADDRESS is not set |
||||
CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS=y |
||||
CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS=4 |
||||
CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 |
||||
CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=4096 |
||||
CONFIG_MAIN_TASK_STACK_SIZE=4096 |
||||
CONFIG_IPC_TASK_STACK_SIZE=1024 |
||||
CONFIG_TIMER_TASK_STACK_SIZE=3584 |
||||
CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y |
||||
# CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set |
||||
# CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set |
||||
# CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set |
||||
# CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set |
||||
CONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y |
||||
# CONFIG_NEWLIB_NANO_FORMAT is not set |
||||
CONFIG_CONSOLE_UART_DEFAULT=y |
||||
# CONFIG_CONSOLE_UART_CUSTOM is not set |
||||
# CONFIG_CONSOLE_UART_NONE is not set |
||||
CONFIG_CONSOLE_UART_NUM=0 |
||||
CONFIG_CONSOLE_UART_BAUDRATE=115200 |
||||
# CONFIG_ULP_COPROC_ENABLED is not set |
||||
CONFIG_ULP_COPROC_RESERVE_MEM=0 |
||||
# CONFIG_ESP32_PANIC_PRINT_HALT is not set |
||||
CONFIG_ESP32_PANIC_PRINT_REBOOT=y |
||||
# CONFIG_ESP32_PANIC_SILENT_REBOOT is not set |
||||
# CONFIG_ESP32_PANIC_GDBSTUB is not set |
||||
CONFIG_ESP32_DEBUG_OCDAWARE=y |
||||
CONFIG_ESP32_DEBUG_STUBS_ENABLE=y |
||||
# CONFIG_INT_WDT is not set |
||||
# CONFIG_TASK_WDT is not set |
||||
CONFIG_BROWNOUT_DET=y |
||||
CONFIG_BROWNOUT_DET_LVL_SEL_0=y |
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set |
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set |
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set |
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set |
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set |
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set |
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_7 is not set |
||||
CONFIG_BROWNOUT_DET_LVL=0 |
||||
CONFIG_REDUCE_PHY_TX_POWER=y |
||||
CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1=y |
||||
# CONFIG_ESP32_TIME_SYSCALL_USE_RTC is not set |
||||
# CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 is not set |
||||
# CONFIG_ESP32_TIME_SYSCALL_USE_NONE is not set |
||||
CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC=y |
||||
# CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL is not set |
||||
# CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC is not set |
||||
# CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 is not set |
||||
CONFIG_ESP32_RTC_CLK_CAL_CYCLES=1024 |
||||
CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY=2000 |
||||
CONFIG_ESP32_XTAL_FREQ_40=y |
||||
# CONFIG_ESP32_XTAL_FREQ_26 is not set |
||||
# CONFIG_ESP32_XTAL_FREQ_AUTO is not set |
||||
CONFIG_ESP32_XTAL_FREQ=40 |
||||
# CONFIG_DISABLE_BASIC_ROM_CONSOLE is not set |
||||
# CONFIG_ESP_TIMER_PROFILING is not set |
||||
# CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set |
||||
CONFIG_ESP_ERR_TO_NAME_LOOKUP=y |
||||
# CONFIG_PM_ENABLE is not set |
||||
CONFIG_ADC_CAL_EFUSE_TP_ENABLE=y |
||||
CONFIG_ADC_CAL_EFUSE_VREF_ENABLE=y |
||||
CONFIG_ADC_CAL_LUT_ENABLE=y |
||||
# CONFIG_EVENT_LOOP_PROFILING is not set |
||||
CONFIG_POST_EVENTS_FROM_ISR=y |
||||
CONFIG_POST_EVENTS_FROM_IRAM_ISR=y |
||||
CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y |
||||
CONFIG_HTTPD_MAX_REQ_HDR_LEN=512 |
||||
CONFIG_HTTPD_MAX_URI_LEN=512 |
||||
CONFIG_HTTPD_ERR_RESP_NO_DELAY=y |
||||
# CONFIG_OTA_ALLOW_HTTP is not set |
||||
CONFIG_SW_COEXIST_ENABLE=y |
||||
# CONFIG_SW_COEXIST_PREFERENCE_WIFI is not set |
||||
# CONFIG_SW_COEXIST_PREFERENCE_BT is not set |
||||
CONFIG_SW_COEXIST_PREFERENCE_BALANCE=y |
||||
CONFIG_SW_COEXIST_PREFERENCE_VALUE=2 |
||||
CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 |
||||
CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 |
||||
# CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set |
||||
CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y |
||||
CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 |
||||
CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 |
||||
# CONFIG_ESP32_WIFI_CSI_ENABLED is not set |
||||
CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y |
||||
CONFIG_ESP32_WIFI_TX_BA_WIN=6 |
||||
CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y |
||||
CONFIG_ESP32_WIFI_RX_BA_WIN=6 |
||||
CONFIG_ESP32_WIFI_NVS_ENABLED=y |
||||
CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y |
||||
# CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set |
||||
CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 |
||||
CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 |
||||
# CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE is not set |
||||
CONFIG_ESP32_WIFI_IRAM_OPT=y |
||||
CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE=y |
||||
# CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION is not set |
||||
CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER=20 |
||||
CONFIG_ESP32_PHY_MAX_TX_POWER=20 |
||||
# CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set |
||||
# CONFIG_ESP32_ENABLE_COREDUMP_TO_UART is not set |
||||
CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE=y |
||||
# CONFIG_ESP32_ENABLE_COREDUMP is not set |
||||
CONFIG_DMA_RX_BUF_NUM=10 |
||||
CONFIG_DMA_TX_BUF_NUM=10 |
||||
CONFIG_EMAC_L2_TO_L3_RX_BUF_MODE=y |
||||
CONFIG_EMAC_CHECK_LINK_PERIOD_MS=2000 |
||||
CONFIG_EMAC_TASK_PRIORITY=20 |
||||
CONFIG_EMAC_TASK_STACK_SIZE=3072 |
||||
# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set |
||||
CONFIG_FATFS_CODEPAGE_437=y |
||||
# CONFIG_FATFS_CODEPAGE_720 is not set |
||||
# CONFIG_FATFS_CODEPAGE_737 is not set |
||||
# CONFIG_FATFS_CODEPAGE_771 is not set |
||||
# CONFIG_FATFS_CODEPAGE_775 is not set |
||||
# CONFIG_FATFS_CODEPAGE_850 is not set |
||||
# CONFIG_FATFS_CODEPAGE_852 is not set |
||||
# CONFIG_FATFS_CODEPAGE_855 is not set |
||||
# CONFIG_FATFS_CODEPAGE_857 is not set |
||||
# CONFIG_FATFS_CODEPAGE_860 is not set |
||||
# CONFIG_FATFS_CODEPAGE_861 is not set |
||||
# CONFIG_FATFS_CODEPAGE_862 is not set |
||||
# CONFIG_FATFS_CODEPAGE_863 is not set |
||||
# CONFIG_FATFS_CODEPAGE_864 is not set |
||||
# CONFIG_FATFS_CODEPAGE_865 is not set |
||||
# CONFIG_FATFS_CODEPAGE_866 is not set |
||||
# CONFIG_FATFS_CODEPAGE_869 is not set |
||||
# CONFIG_FATFS_CODEPAGE_932 is not set |
||||
# CONFIG_FATFS_CODEPAGE_936 is not set |
||||
# CONFIG_FATFS_CODEPAGE_949 is not set |
||||
# CONFIG_FATFS_CODEPAGE_950 is not set |
||||
CONFIG_FATFS_CODEPAGE=437 |
||||
CONFIG_FATFS_LFN_NONE=y |
||||
# CONFIG_FATFS_LFN_HEAP is not set |
||||
# CONFIG_FATFS_LFN_STACK is not set |
||||
CONFIG_FATFS_FS_LOCK=0 |
||||
CONFIG_FATFS_TIMEOUT_MS=10000 |
||||
CONFIG_FATFS_PER_FILE_CACHE=y |
||||
CONFIG_MB_MASTER_TIMEOUT_MS_RESPOND=150 |
||||
CONFIG_MB_MASTER_DELAY_MS_CONVERT=200 |
||||
CONFIG_MB_QUEUE_LENGTH=20 |
||||
CONFIG_MB_SERIAL_TASK_STACK_SIZE=2048 |
||||
CONFIG_MB_SERIAL_BUF_SIZE=256 |
||||
CONFIG_MB_SERIAL_TASK_PRIO=10 |
||||
# CONFIG_MB_CONTROLLER_SLAVE_ID_SUPPORT is not set |
||||
CONFIG_MB_CONTROLLER_NOTIFY_TIMEOUT=20 |
||||
CONFIG_MB_CONTROLLER_NOTIFY_QUEUE_SIZE=20 |
||||
CONFIG_MB_CONTROLLER_STACK_SIZE=4096 |
||||
CONFIG_MB_EVENT_QUEUE_TIMEOUT=20 |
||||
CONFIG_MB_TIMER_PORT_ENABLED=y |
||||
CONFIG_MB_TIMER_GROUP=0 |
||||
CONFIG_MB_TIMER_INDEX=0 |
||||
# CONFIG_FREERTOS_UNICORE is not set |
||||
CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF |
||||
CONFIG_FREERTOS_CORETIMER_0=y |
||||
# CONFIG_FREERTOS_CORETIMER_1 is not set |
||||
CONFIG_FREERTOS_HZ=1000 |
||||
CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION=y |
||||
# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set |
||||
# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set |
||||
CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y |
||||
# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set |
||||
CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y |
||||
CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 |
||||
CONFIG_FREERTOS_ASSERT_FAIL_ABORT=y |
||||
# CONFIG_FREERTOS_ASSERT_FAIL_PRINT_CONTINUE is not set |
||||
# CONFIG_FREERTOS_ASSERT_DISABLE is not set |
||||
CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 |
||||
CONFIG_FREERTOS_ISR_STACKSIZE=1536 |
||||
# CONFIG_FREERTOS_LEGACY_HOOKS is not set |
||||
CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 |
||||
# CONFIG_SUPPORT_STATIC_ALLOCATION is not set |
||||
CONFIG_TIMER_TASK_PRIORITY=1 |
||||
CONFIG_TIMER_TASK_STACK_DEPTH=2048 |
||||
CONFIG_TIMER_QUEUE_LENGTH=10 |
||||
CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 |
||||
# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set |
||||
# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set |
||||
# CONFIG_FREERTOS_DEBUG_INTERNALS is not set |
||||
CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y |
||||
CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y |
||||
CONFIG_HEAP_POISONING_DISABLED=y |
||||
# CONFIG_HEAP_POISONING_LIGHT is not set |
||||
# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set |
||||
CONFIG_HEAP_TRACING_OFF=y |
||||
# CONFIG_HEAP_TRACING_STANDALONE is not set |
||||
# CONFIG_HEAP_TRACING_TOHOST is not set |
||||
# CONFIG_HEAP_TRACING is not set |
||||
CONFIG_LIBSODIUM_USE_MBEDTLS_SHA=y |
||||
# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set |
||||
# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set |
||||
# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set |
||||
CONFIG_LOG_DEFAULT_LEVEL_INFO=y |
||||
# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set |
||||
# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set |
||||
CONFIG_LOG_DEFAULT_LEVEL=3 |
||||
CONFIG_LOG_COLORS=y |
||||
# CONFIG_L2_TO_L3_COPY is not set |
||||
# CONFIG_LWIP_IRAM_OPTIMIZATION is not set |
||||
CONFIG_LWIP_MAX_SOCKETS=10 |
||||
# CONFIG_USE_ONLY_LWIP_SELECT is not set |
||||
CONFIG_LWIP_SO_REUSE=y |
||||
CONFIG_LWIP_SO_REUSE_RXTOALL=y |
||||
# CONFIG_LWIP_SO_RCVBUF is not set |
||||
CONFIG_LWIP_DHCP_MAX_NTP_SERVERS=1 |
||||
# CONFIG_LWIP_IP_FRAG is not set |
||||
# CONFIG_LWIP_IP_REASSEMBLY is not set |
||||
# CONFIG_LWIP_STATS is not set |
||||
# CONFIG_LWIP_ETHARP_TRUST_IP_MAC is not set |
||||
CONFIG_ESP_GRATUITOUS_ARP=y |
||||
CONFIG_GARP_TMR_INTERVAL=60 |
||||
CONFIG_TCPIP_RECVMBOX_SIZE=32 |
||||
CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y |
||||
# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set |
||||
CONFIG_LWIP_DHCPS_LEASE_UNIT=60 |
||||
CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 |
||||
# CONFIG_LWIP_AUTOIP is not set |
||||
CONFIG_LWIP_NETIF_LOOPBACK=y |
||||
CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 |
||||
CONFIG_LWIP_MAX_ACTIVE_TCP=16 |
||||
CONFIG_LWIP_MAX_LISTENING_TCP=16 |
||||
CONFIG_TCP_MAXRTX=12 |
||||
CONFIG_TCP_SYNMAXRTX=6 |
||||
CONFIG_TCP_MSS=1436 |
||||
CONFIG_TCP_MSL=60000 |
||||
CONFIG_TCP_SND_BUF_DEFAULT=5744 |
||||