ArduinoCore-mbed
ArduinoCore-mbed copied to clipboard
Fixes https://github.com/arduino/ArduinoCore-mbed/issues/253
To add the Segger JLink family to the list of programmers for the Portenta H7 target. The Segger JLink will be able to be used with [OpenOCD](http://openocd.org/) to run the...
This PR adds an `end()` method (aliased to `stop()` for better interoperability) which is symmetric to `begin()`. This is borrowed by the ESP8266 and ESP32 cores.
Since `available()` is currently implemented as `accept()` (i.e. it returns a client even before it has actually sent any data), we provide an alias for it.
Do not make device node world-writeable, instead give access to desktop user. Also use one "here" document instead of mixing in echo statements. Customarily keep "then" on same line as...
Goes along with my changes to USBKeyboard.cpp. Added function prototypes and descriptions. Added a persistent array of keys which allow the user to send multiple keys (up to 10) in...
Why doesn't the RP2040 `pins_arduino.h` contain the digital pin defines like the 33BLE? e.g. shouldn't this be in `.../mbed_nano/2.1.0/variants/NANO_RP2040_CONNECT/pins_arduino.h` ? ``` // Digital pins // ----------- #define D0 (0u) #define...
`SDRAM` currently supports `malloc()` and `free()`, but doesn't support `realloc()`. Would it be possible to add it?
Hi, i want to read the serial data(battery data) from the bms in the Arduino PMC using USB_UART connector. [this](file:///home/pc/Downloads/e.e.c.a.UART_485e.e.a.e.V1.2-a.e.ae.1-2.pdf) is a BMS datasheet, you can see what data should...