├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── api-deprecation.md │ ├── api-improvement.md │ ├── bug_report.md │ ├── config.yml │ ├── new-api-component.md │ └── other-enhancement.md └── workflows │ ├── spell-check.yml │ └── unit-tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── api ├── ArduinoAPI.h ├── Binary.h ├── CanMsg.cpp ├── CanMsg.h ├── CanMsgRingbuffer.cpp ├── CanMsgRingbuffer.h ├── Client.h ├── Common.cpp ├── Common.h ├── Compat.h ├── DMAPool.h ├── HardwareCAN.h ├── HardwareI2C.h ├── HardwareSPI.h ├── HardwareSerial.h ├── IPAddress.cpp ├── IPAddress.h ├── Interrupts.h ├── PluggableUSB.cpp ├── PluggableUSB.h ├── Print.cpp ├── Print.h ├── Printable.h ├── RingBuffer.h ├── Server.h ├── Stream.cpp ├── Stream.h ├── String.cpp ├── String.h ├── USBAPI.h ├── Udp.h ├── WCharacter.h ├── deprecated-avr-comp │ └── avr │ │ ├── dtostrf.c.impl │ │ ├── dtostrf.h │ │ ├── interrupt.h │ │ └── pgmspace.h ├── deprecated │ ├── Client.h │ ├── HardwareSerial.h │ ├── IPAddress.h │ ├── Print.h │ ├── Printable.h │ ├── Server.h │ ├── Stream.h │ ├── Udp.h │ └── WString.h └── itoa.h └── test ├── .gitignore ├── CMakeLists.txt ├── include ├── MillisFake.h ├── PrintMock.h ├── PrintableMock.h └── StreamMock.h └── src ├── CanMsg ├── test_CanExtendedId.cpp ├── test_CanMsg.cpp ├── test_CanMsg_CopyCtor.cpp ├── test_CanStandardId.cpp ├── test_isExtendedId.cpp ├── test_isStandardId.cpp ├── test_operator_assignment.cpp └── test_printTo.cpp ├── CanMsgRingbuffer └── test_available.cpp ├── Common ├── test_makeWord.cpp ├── test_map.cpp ├── test_max.cpp └── test_min.cpp ├── IPAddress ├── test_IPAddress.cpp ├── test_IPAddress6.cpp ├── test_fromString.cpp ├── test_fromString6.cpp ├── test_operator_assignment.cpp ├── test_operator_comparison.cpp ├── test_operator_comparison6.cpp ├── test_operator_parentheses.cpp ├── test_operator_parentheses6.cpp ├── test_printTo.cpp ├── test_printTo6.cpp └── test_toString.cpp ├── MillisFake.cpp ├── Print ├── test_availableForWrite.cpp ├── test_clearWriteError.cpp ├── test_getWriteError.cpp ├── test_print.cpp └── test_println.cpp ├── PrintMock.cpp ├── Ringbuffer ├── test_available.cpp ├── test_availableForStore.cpp ├── test_clear.cpp ├── test_isFull.cpp ├── test_peek.cpp ├── test_read_char.cpp └── test_store_char.cpp ├── Stream ├── test_find.cpp ├── test_findUntil.cpp ├── test_getTimeout.cpp ├── test_parseFloat.cpp ├── test_parseInt.cpp ├── test_readBytes.cpp ├── test_readBytesUntil.cpp ├── test_readString.cpp ├── test_readStringUntil.cpp └── test_setTimeout.cpp ├── StreamMock.cpp ├── String ├── StringPrinter.h ├── test_String.cpp ├── test_characterAccessFunc.cpp ├── test_compareTo.cpp ├── test_comparisonFunc.cpp ├── test_concat.cpp ├── test_indexOf.cpp ├── test_isEmpty.cpp ├── test_lastIndexOf.cpp ├── test_length.cpp ├── test_move.cpp ├── test_operators.cpp ├── test_remove.cpp ├── test_replace.cpp ├── test_substring.cpp ├── test_toDouble.cpp ├── test_toFloat.cpp ├── test_toInt.cpp ├── test_toLowerCase.cpp ├── test_toUpperCase.cpp └── test_trim.cpp ├── WCharacter ├── test_isAscii.cpp ├── test_isControl.cpp ├── test_isDigit.cpp ├── test_isHexadecimalDigit.cpp ├── test_isLowerCase.cpp ├── test_isPunct.cpp ├── test_isSpace.cpp ├── test_isUpperCase.cpp ├── test_isWhitespace.cpp └── test_toAscii.cpp ├── dtostrf.cpp └── itoa.cpp /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/api-deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/.github/ISSUE_TEMPLATE/api-deprecation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/api-improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/.github/ISSUE_TEMPLATE/api-improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-api-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/.github/ISSUE_TEMPLATE/new-api-component.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/.github/ISSUE_TEMPLATE/other-enhancement.md -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | .idea/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/README.md -------------------------------------------------------------------------------- /api/ArduinoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/ArduinoAPI.h -------------------------------------------------------------------------------- /api/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Binary.h -------------------------------------------------------------------------------- /api/CanMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/CanMsg.cpp -------------------------------------------------------------------------------- /api/CanMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/CanMsg.h -------------------------------------------------------------------------------- /api/CanMsgRingbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/CanMsgRingbuffer.cpp -------------------------------------------------------------------------------- /api/CanMsgRingbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/CanMsgRingbuffer.h -------------------------------------------------------------------------------- /api/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Client.h -------------------------------------------------------------------------------- /api/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Common.cpp -------------------------------------------------------------------------------- /api/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Common.h -------------------------------------------------------------------------------- /api/Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Compat.h -------------------------------------------------------------------------------- /api/DMAPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/DMAPool.h -------------------------------------------------------------------------------- /api/HardwareCAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/HardwareCAN.h -------------------------------------------------------------------------------- /api/HardwareI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/HardwareI2C.h -------------------------------------------------------------------------------- /api/HardwareSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/HardwareSPI.h -------------------------------------------------------------------------------- /api/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/HardwareSerial.h -------------------------------------------------------------------------------- /api/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/IPAddress.cpp -------------------------------------------------------------------------------- /api/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/IPAddress.h -------------------------------------------------------------------------------- /api/Interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Interrupts.h -------------------------------------------------------------------------------- /api/PluggableUSB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/PluggableUSB.cpp -------------------------------------------------------------------------------- /api/PluggableUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/PluggableUSB.h -------------------------------------------------------------------------------- /api/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Print.cpp -------------------------------------------------------------------------------- /api/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Print.h -------------------------------------------------------------------------------- /api/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Printable.h -------------------------------------------------------------------------------- /api/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/RingBuffer.h -------------------------------------------------------------------------------- /api/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Server.h -------------------------------------------------------------------------------- /api/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Stream.cpp -------------------------------------------------------------------------------- /api/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Stream.h -------------------------------------------------------------------------------- /api/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/String.cpp -------------------------------------------------------------------------------- /api/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/String.h -------------------------------------------------------------------------------- /api/USBAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/USBAPI.h -------------------------------------------------------------------------------- /api/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/Udp.h -------------------------------------------------------------------------------- /api/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/WCharacter.h -------------------------------------------------------------------------------- /api/deprecated-avr-comp/avr/dtostrf.c.impl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated-avr-comp/avr/dtostrf.c.impl -------------------------------------------------------------------------------- /api/deprecated-avr-comp/avr/dtostrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated-avr-comp/avr/dtostrf.h -------------------------------------------------------------------------------- /api/deprecated-avr-comp/avr/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated-avr-comp/avr/interrupt.h -------------------------------------------------------------------------------- /api/deprecated-avr-comp/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated-avr-comp/avr/pgmspace.h -------------------------------------------------------------------------------- /api/deprecated/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated/Client.h -------------------------------------------------------------------------------- /api/deprecated/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated/HardwareSerial.h -------------------------------------------------------------------------------- /api/deprecated/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated/IPAddress.h -------------------------------------------------------------------------------- /api/deprecated/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated/Print.h -------------------------------------------------------------------------------- /api/deprecated/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated/Printable.h -------------------------------------------------------------------------------- /api/deprecated/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated/Server.h -------------------------------------------------------------------------------- /api/deprecated/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated/Stream.h -------------------------------------------------------------------------------- /api/deprecated/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated/Udp.h -------------------------------------------------------------------------------- /api/deprecated/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/deprecated/WString.h -------------------------------------------------------------------------------- /api/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/api/itoa.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/include/MillisFake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/include/MillisFake.h -------------------------------------------------------------------------------- /test/include/PrintMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/include/PrintMock.h -------------------------------------------------------------------------------- /test/include/PrintableMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/include/PrintableMock.h -------------------------------------------------------------------------------- /test/include/StreamMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/include/StreamMock.h -------------------------------------------------------------------------------- /test/src/CanMsg/test_CanExtendedId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/CanMsg/test_CanExtendedId.cpp -------------------------------------------------------------------------------- /test/src/CanMsg/test_CanMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/CanMsg/test_CanMsg.cpp -------------------------------------------------------------------------------- /test/src/CanMsg/test_CanMsg_CopyCtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/CanMsg/test_CanMsg_CopyCtor.cpp -------------------------------------------------------------------------------- /test/src/CanMsg/test_CanStandardId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/CanMsg/test_CanStandardId.cpp -------------------------------------------------------------------------------- /test/src/CanMsg/test_isExtendedId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/CanMsg/test_isExtendedId.cpp -------------------------------------------------------------------------------- /test/src/CanMsg/test_isStandardId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/CanMsg/test_isStandardId.cpp -------------------------------------------------------------------------------- /test/src/CanMsg/test_operator_assignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/CanMsg/test_operator_assignment.cpp -------------------------------------------------------------------------------- /test/src/CanMsg/test_printTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/CanMsg/test_printTo.cpp -------------------------------------------------------------------------------- /test/src/CanMsgRingbuffer/test_available.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/CanMsgRingbuffer/test_available.cpp -------------------------------------------------------------------------------- /test/src/Common/test_makeWord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Common/test_makeWord.cpp -------------------------------------------------------------------------------- /test/src/Common/test_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Common/test_map.cpp -------------------------------------------------------------------------------- /test/src/Common/test_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Common/test_max.cpp -------------------------------------------------------------------------------- /test/src/Common/test_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Common/test_min.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_IPAddress.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_IPAddress6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_IPAddress6.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_fromString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_fromString.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_fromString6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_fromString6.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_operator_assignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_operator_assignment.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_operator_comparison.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_operator_comparison.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_operator_comparison6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_operator_comparison6.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_operator_parentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_operator_parentheses.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_operator_parentheses6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_operator_parentheses6.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_printTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_printTo.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_printTo6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_printTo6.cpp -------------------------------------------------------------------------------- /test/src/IPAddress/test_toString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/IPAddress/test_toString.cpp -------------------------------------------------------------------------------- /test/src/MillisFake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/MillisFake.cpp -------------------------------------------------------------------------------- /test/src/Print/test_availableForWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Print/test_availableForWrite.cpp -------------------------------------------------------------------------------- /test/src/Print/test_clearWriteError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Print/test_clearWriteError.cpp -------------------------------------------------------------------------------- /test/src/Print/test_getWriteError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Print/test_getWriteError.cpp -------------------------------------------------------------------------------- /test/src/Print/test_print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Print/test_print.cpp -------------------------------------------------------------------------------- /test/src/Print/test_println.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Print/test_println.cpp -------------------------------------------------------------------------------- /test/src/PrintMock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/PrintMock.cpp -------------------------------------------------------------------------------- /test/src/Ringbuffer/test_available.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Ringbuffer/test_available.cpp -------------------------------------------------------------------------------- /test/src/Ringbuffer/test_availableForStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Ringbuffer/test_availableForStore.cpp -------------------------------------------------------------------------------- /test/src/Ringbuffer/test_clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Ringbuffer/test_clear.cpp -------------------------------------------------------------------------------- /test/src/Ringbuffer/test_isFull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Ringbuffer/test_isFull.cpp -------------------------------------------------------------------------------- /test/src/Ringbuffer/test_peek.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Ringbuffer/test_peek.cpp -------------------------------------------------------------------------------- /test/src/Ringbuffer/test_read_char.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Ringbuffer/test_read_char.cpp -------------------------------------------------------------------------------- /test/src/Ringbuffer/test_store_char.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Ringbuffer/test_store_char.cpp -------------------------------------------------------------------------------- /test/src/Stream/test_find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Stream/test_find.cpp -------------------------------------------------------------------------------- /test/src/Stream/test_findUntil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Stream/test_findUntil.cpp -------------------------------------------------------------------------------- /test/src/Stream/test_getTimeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Stream/test_getTimeout.cpp -------------------------------------------------------------------------------- /test/src/Stream/test_parseFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Stream/test_parseFloat.cpp -------------------------------------------------------------------------------- /test/src/Stream/test_parseInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Stream/test_parseInt.cpp -------------------------------------------------------------------------------- /test/src/Stream/test_readBytes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Stream/test_readBytes.cpp -------------------------------------------------------------------------------- /test/src/Stream/test_readBytesUntil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Stream/test_readBytesUntil.cpp -------------------------------------------------------------------------------- /test/src/Stream/test_readString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Stream/test_readString.cpp -------------------------------------------------------------------------------- /test/src/Stream/test_readStringUntil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Stream/test_readStringUntil.cpp -------------------------------------------------------------------------------- /test/src/Stream/test_setTimeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/Stream/test_setTimeout.cpp -------------------------------------------------------------------------------- /test/src/StreamMock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/StreamMock.cpp -------------------------------------------------------------------------------- /test/src/String/StringPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/StringPrinter.h -------------------------------------------------------------------------------- /test/src/String/test_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_String.cpp -------------------------------------------------------------------------------- /test/src/String/test_characterAccessFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_characterAccessFunc.cpp -------------------------------------------------------------------------------- /test/src/String/test_compareTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_compareTo.cpp -------------------------------------------------------------------------------- /test/src/String/test_comparisonFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_comparisonFunc.cpp -------------------------------------------------------------------------------- /test/src/String/test_concat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_concat.cpp -------------------------------------------------------------------------------- /test/src/String/test_indexOf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_indexOf.cpp -------------------------------------------------------------------------------- /test/src/String/test_isEmpty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_isEmpty.cpp -------------------------------------------------------------------------------- /test/src/String/test_lastIndexOf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_lastIndexOf.cpp -------------------------------------------------------------------------------- /test/src/String/test_length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_length.cpp -------------------------------------------------------------------------------- /test/src/String/test_move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_move.cpp -------------------------------------------------------------------------------- /test/src/String/test_operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_operators.cpp -------------------------------------------------------------------------------- /test/src/String/test_remove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_remove.cpp -------------------------------------------------------------------------------- /test/src/String/test_replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_replace.cpp -------------------------------------------------------------------------------- /test/src/String/test_substring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_substring.cpp -------------------------------------------------------------------------------- /test/src/String/test_toDouble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_toDouble.cpp -------------------------------------------------------------------------------- /test/src/String/test_toFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_toFloat.cpp -------------------------------------------------------------------------------- /test/src/String/test_toInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_toInt.cpp -------------------------------------------------------------------------------- /test/src/String/test_toLowerCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_toLowerCase.cpp -------------------------------------------------------------------------------- /test/src/String/test_toUpperCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_toUpperCase.cpp -------------------------------------------------------------------------------- /test/src/String/test_trim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/String/test_trim.cpp -------------------------------------------------------------------------------- /test/src/WCharacter/test_isAscii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/WCharacter/test_isAscii.cpp -------------------------------------------------------------------------------- /test/src/WCharacter/test_isControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/WCharacter/test_isControl.cpp -------------------------------------------------------------------------------- /test/src/WCharacter/test_isDigit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/WCharacter/test_isDigit.cpp -------------------------------------------------------------------------------- /test/src/WCharacter/test_isHexadecimalDigit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/WCharacter/test_isHexadecimalDigit.cpp -------------------------------------------------------------------------------- /test/src/WCharacter/test_isLowerCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/WCharacter/test_isLowerCase.cpp -------------------------------------------------------------------------------- /test/src/WCharacter/test_isPunct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/WCharacter/test_isPunct.cpp -------------------------------------------------------------------------------- /test/src/WCharacter/test_isSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/WCharacter/test_isSpace.cpp -------------------------------------------------------------------------------- /test/src/WCharacter/test_isUpperCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/WCharacter/test_isUpperCase.cpp -------------------------------------------------------------------------------- /test/src/WCharacter/test_isWhitespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/WCharacter/test_isWhitespace.cpp -------------------------------------------------------------------------------- /test/src/WCharacter/test_toAscii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/WCharacter/test_toAscii.cpp -------------------------------------------------------------------------------- /test/src/dtostrf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/dtostrf.cpp -------------------------------------------------------------------------------- /test/src/itoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/ArduinoCore-API/HEAD/test/src/itoa.cpp --------------------------------------------------------------------------------