Results 5 issues of Vadim

The initialization code of I2S subsystem causes an exception 28/29. Fatal exception (28): epc1=0x40230bd7, epc2=0x00000000, epc3=0x00000000, excvaddr=0x02190000, depc=0x00000000 `rom_i2c_writeReg_Mask(i2c_bbpll, i2c_bbpll_hostid, i2c_bbpll_en_audio_clock_out, i2c_bbpll_en_audio_clock_out_msb, i2c_bbpll_en_audio_clock_out_lsb, 1); CLEAR_PERI_REG_MASK(I2SCONF, I2S_I2S_RESET_MASK); //

qFlipper ver. 1.2.1 Code: typedef enum { EventTypeTick, EventTypeKey, } EventType; typedef struct { EventType type; InputEvent input; } PluginEvent; FuriMessageQueue* event_queue; PluginEvent event; FuriStatus event_status = furi_message_queue_get(event_queue, &event, 100);...

bug
core+services

Why is this bug still not fixed? https://github.com/arduino/Arduino/issues/5405

Series like this: ``` Serial.print("r="); Serial.print(25); Serial.print(","); Serial.print(1); Serial.print(";"); ``` ` Output: r=25,1;r=25,1;r=25,1;r=5,1;r=25,1;r=25,1; ` Temporary fix (in UARTClass.cpp): ``` size_t UARTClass::write( const uint8_t uc_data ) { int nextWrite = (_tx_buffer->_iHead...