MATTYGILO

Results 67 comments of MATTYGILO

So I think it is because of my custom sdkconfig.cmake because I have these settings: ``` set(CONFIG_USB_OTG_SUPPORTED "y") set(CONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE "256") set(CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED "y") ```

Maybe it is because https://github.com/micropython/micropython/blob/92c7532d8e461f3fd9ea44f4d024ee3ce156e5e8/ports/esp32/boards/GENERIC_S3_SPIRAM_OCT/mpconfigboard.cmake#L5 https://github.com/micropython/micropython/blob/92c7532d8e461f3fd9ea44f4d024ee3ce156e5e8/ports/esp32/boards/sdkconfig.usb#L1 The reference uses the USB and then tinyusb is not available

@robert-hh So I don't think I want to be using usb as my device uses UART instead. I'm still having all the problems I had above, uncertain what will fix...

So I no longer get compile errors I've just added some bounds ``` static void gen_numname( BYTE* dst, const BYTE* src, const WCHAR* lfn, UINT seq ) { BYTE ns[8],...

Ok so including idf components with tiny usb fixes those errors now getting these errors: ``` boards/MICROLITE_S3_SPIRAM_OCTAL/managed_components/espressif__esp_tinyusb/include/tusb_cdc_acm.h:51:5: error: expected specifier-qualifier-list before 'cdc_line_coding_t' 51 | cdc_line_coding_t const *p_line_coding; /*!< New line...

So fixed the other errors by just creating a new board settings afresh based on micropython default octal board. But, I'm getting this error still ``` /home/runner/work/chorus_device/chorus_device/chorusware/submodules/micropython/lib/oofatfs/ff.c:1990:15: error: writing 1...

Ok for anyone confused about the functions class etc these are the parameters. interpreter: ['__class__', 'getInputTensor', 'getOutputTensor', 'invoke'] inputTensor: ['__class__', 'getType', 'getValue', 'quantizeFloatToInt8', 'quantizeInt8ToFloat', 'setValue']

inputTensor.getType(index) inputTensor.getValue(index) inputTensor.quantizeFloatToInt8(float_value) inputTensor.quantizeInt8ToFloat(int_value) inputTensor.setValue(index, value)

microlite.interpreter(micro_speech_model_bytes, arena_size, input_callback, output_callback)