diff --git a/embedded8266/image.elf-0x00000.bin b/embedded8266/image.elf-0x00000.bin index 6d69844..53f421a 100644 Binary files a/embedded8266/image.elf-0x00000.bin and b/embedded8266/image.elf-0x00000.bin differ diff --git a/embedded8266/image.elf-0x40000.bin b/embedded8266/image.elf-0x40000.bin index 13b21fd..bf9953d 100644 Binary files a/embedded8266/image.elf-0x40000.bin and b/embedded8266/image.elf-0x40000.bin differ diff --git a/embedded8266/user/user_main.c b/embedded8266/user/user_main.c index a047897..7c0dcab 100644 --- a/embedded8266/user/user_main.c +++ b/embedded8266/user/user_main.c @@ -53,7 +53,6 @@ static void NewFrame() { if( !COLORCHORD_ACTIVE ) return; - //uint8_t led_outs[NUM_LIN_LEDS*3]; int i; HandleFrameInfo(); @@ -67,7 +66,6 @@ static void NewFrame() break; }; - //SendSPI2812( ledOut, NUM_LIN_LEDS ); ws2812_push( ledOut, USE_NUM_LIN_LEDS * 3 ); } @@ -175,6 +173,10 @@ void ICACHE_FLASH_ATTR user_init(void) GPIO_OUTPUT_SET(GPIO_ID_PIN(0), 0); #endif + //Tricky: New recommendation is to connect GPIO14 to vcc for audio circuitry, so we turn this on by default. + GPIO_OUTPUT_SET( GPIO_ID_PIN(14), 1); + PIN_FUNC_SELECT( PERIPHS_IO_MUX_MTMS_U, 3 ); + CSPreInit(); pUdpServer = (struct espconn *)os_zalloc(sizeof(struct espconn));