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

Results 103 ArduinoCore-sam issues
Sort by recently updated
recently updated
newest added

```C++ void setup() { Serial.begin(9600); Serial.setTimeout(65535); } void loop() { Serial.println("Snapshot"); char C; Serial.readBytes(&C,1); } ``` Upload this sketch in Arduino IDE and open the Serial Monitor. There is a...

```C++ #include void setup() { std::locale L; } void loop() { } ``` ``` C:\Users\vhtmf\AppData\Local\Temp\arduino\sketches\52F23F0CFDD118EC78D3909BB8E326BF\sketch\Functional.ino.cpp.o: In function `setup': C:\Users\vhtmf\Documents\Arduino\libraries\Cpp_Standard_Library\examples\Functional/Functional.ino:3: undefined reference to `std::locale::locale()' C:\Users\vhtmf\Documents\Arduino\libraries\Cpp_Standard_Library\examples\Functional/Functional.ino:3: undefined reference to `std::locale::~locale()' collect2.exe: error:...

The inclusion of some standard library headers can cause compilation errors. For example: ```C++ #include void setup() { } void loop() { } ``` ``` C:\Users\vhtmf\AppData\Local\Temp\arduino\sketches\4F283322D1DC7D231547A617FD5B3E64\sketch\sketch_feb10a.ino.cpp.o: In function `__static_initialization_and_destruction_0': c:\users\vhtmf\appdata\local\arduino15\packages\arduino\tools\arm-none-eabi-gcc\4.8.3-2014q1\arm-none-eabi\include\c++\4.8.3/iostream:74:...

Currently there is no support for C++ standard Libraries for the Arduino Due and other SAM3 based boards. This prevents the use of many useful libraries. It would be nice...

C++11 doesn't even support variable templates. It's too old.

Hi, Tx for Serial3 for Arduino Due doesn't work after using pinMode on the pin. No issue is there for receiving. I only faced this issue on Arduino Due, not...

This PR adds support for SAM4E and SAM4S Needs some cleaning and sorting, so the draft state

this should be applied arduino/ArduinoCore-API#104

Moved from https://github.com/arduino/Arduino/pull/4871 _sined23 commented on 15 Apr 2016 The main idea is that bytes are written and read into/from CDC buffer not one by one but block of bytes._...