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

Results 66 ArduinoCore-arc32 issues
Sort by recently updated
recently updated
newest added

Hey, Right now on the Arduino 101 it doesn't give the suggestion to change the COM port when selecting the wrong one. It would be better if it was replaced...

The SPI port on Arduino 101 does not properly receive MISO input when the clock is configured faster than 8 MHz. However, SPI.beginTransaction() does not properly limit the speed to...

Issue #420 added support for broadcasting a characteristic value. This works now, however I'm not able to connect to the peripheral. (Sample code below.) nRF Connect (Samsung S8 with Android...

Hi, I found a problem in curieBLE library with the subscribe at notify characteristics. My goal is to read with a 50Hz refresh rate the value of a characteristic updated...

For example, in following scenario (Nordic UART Service implementation): ```cpp #include BLEService NUS ("713D0000-503E-4C75-BA94-3148F18D941E"); BLECharacteristic rxChar ("713D0003-503E-4C75-BA94-3148F18D941E", BLEWrite | BLEWriteWithoutResponse, BLE_MAX_ATTR_DATA_LEN); BLECharacteristic txChar ("713D0002-503E-4C75-BA94-3148F18D941E", BLERead | BLENotify, BLE_MAX_ATTR_DATA_LEN); void setup()...

Under Review

How do I resolve this error: "exec: "cmd": executable file not found in $PATH"

Hello together, I would like to enable the debug interface. I have a ftdi USB to TTL adapter connected to rx and tx and the adapter connected to a usb...

BLEBoolCharacteristic is defined in BLETypedCharacteristics.h, but not implemented in BLETypedCharacteristics.cpp. This causes link errors when building if BLEBoolCharacteristic is used.

Since 0304de781d54d0158c070d2d9cc750ab295c0712 the sketch size has exploded. Moving the BLE stack to ARC core is the main responsible. This patch addresses two main fields: - avoid including useless functions (WIP)...

enhancement