acscd
acscd
### Operating System Linux ### Board Raspberry Pi Pico ### Firmware ``` #include "Adafruit_TinyUSB.h" void setup() { pinMode(LED_BUILTIN, OUTPUT); Serial.begin(115200); Serial1.begin(115200); //for debug } void loop() { digitalWrite(LED_BUILTIN, tud_connected()); }...
This adds support for SCSI_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL via a callback function tud_msc_prevent_allow_medium_removal_cb, very similar to the handling of SCSI_CMD_START_STOP_UNIT. Properly handling the Prevent / Allow Medium Removal command clears up a "Failed...
It would be really handy to have the option to just save a diff file out. Maybe something like File->Save diff.
Could you add a tab width setting to the editor? And maybe one to turn off tab-to-spaces? That would make it much more usable.
Although quite rare, there are some applications where one needs to send or receive buffers >= 256 bytes. This can be supported simply by changing some *uint8_t* variables to *size_t*....