ArduinoCore-API icon indicating copy to clipboard operation
ArduinoCore-API copied to clipboard

Hardware independent layer of the Arduino cores defining the official API

Results 136 ArduinoCore-API issues
Sort by recently updated
recently updated
newest added

https://github.com/arduino/ArduinoCore-API/blob/7f8de5869ee3de7a915bf1db64313c08595b3ac3/api/String.cpp#L445 and https://github.com/arduino/ArduinoCore-API/blob/7f8de5869ee3de7a915bf1db64313c08595b3ac3/api/String.cpp#L445 should use ``memcmp()`` to make sure that a String object can be compared to another String object that has embedded ``NUL`` characters

## Overview I have been working on a project that requires processing the reception of UART frames in microseconds. The current API for the Serial class does not have a...

The Arduino Core API defines a very low level USB api in [api/USBAPI.h](https://github.com/arduino/ArduinoCore-API/blob/master/api/USBAPI.h). This API is implemented by the avr core in [cores/arduino/USBCore.cpp](https://github.com/arduino/ArduinoCore-avr/blob/master/cores/arduino/USBCore.cpp). But it is not implemented by samd...

### Description The Arduino core has a digitalWrite() and a digitalRead() function. In many sketches there is a need to toggle a pin, either for a blinking LED or a...

enhancement

A menu of issue categories will be presented when the user begins the issue creation process. The issue will be prefilled with prompts for the specific information needed for each...

Is there an existing or planned guide on how to port to platforms? I'm specifically interested in new RTOSes (see discussion on zephyrproject-rtos/zephyr#22247) but I imagine the same guide would...

The Arduino API renamed "WString.h" to "String.h" Given that "string.h" is a part of libc, and that most modern operating systems implement sort of "fuzzy" case-matching in their filesystems, this...

Allowing the user to set the max speed will enable newer faster Arduino based MCU's to control older devices that need slower clock speeds to function. https://github.com/arduino/ArduinoCore-API/issues/83

hi, for Arduino C++ Strings some features are missing: .readStringUntil(EOL) or perhaps a new .readln(): to read an entire textline all at once until end of line, discarding any EoL/CR...

based on https://github.com/arduino/Arduino/pull/5829

enhancement