├── .clang-format ├── .gitignore ├── .gitmodules ├── README.md ├── boards.txt ├── cores └── k210 │ ├── Arduino.h │ ├── Binary.h │ ├── Client.h │ ├── Common.cpp │ ├── Common.h │ ├── HardwareI2C.h │ ├── HardwareSerial.cpp │ ├── 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 │ ├── USBAPI.h │ ├── Udp.h │ ├── WCharacter.h │ ├── WInterrupts.c │ ├── WString.cpp │ ├── WString.h │ ├── deprecated-avr-comp │ └── avr │ │ ├── dtostrf.c │ │ ├── dtostrf.h │ │ ├── interrupt.h │ │ └── pgmspace.h │ ├── deprecated │ ├── Client.h │ ├── HardwareSerial.h │ ├── IPAddress.h │ ├── Print.h │ ├── Printable.h │ ├── Server.h │ ├── Stream.h │ └── Udp.h │ ├── hooks.c │ ├── itoa.h │ ├── main.cpp │ ├── wiring.c │ ├── wiring_analog.c │ ├── wiring_digital.c │ ├── wiring_private.h │ ├── wiring_pulse.cpp │ └── wiring_shift.c ├── libraries ├── SPI │ ├── SPIClass.cpp │ ├── SPIClass.h │ ├── examples │ │ ├── BarometricPressureSensor │ │ │ └── BarometricPressureSensor.ino │ │ └── DigitalPotControl │ │ │ └── DigitalPotControl.ino │ ├── keywords.txt │ └── library.properties └── Wire │ ├── Wire.cpp │ ├── Wire.h │ ├── examples │ ├── SFRRanger_reader │ │ └── SFRRanger_reader.ino │ ├── digital_potentiometer │ │ └── digital_potentiometer.ino │ ├── master_reader │ │ └── master_reader.ino │ ├── master_writer │ │ └── master_writer.ino │ ├── slave_receiver │ │ └── slave_receiver.ino │ └── slave_sender │ │ └── slave_sender.ino │ ├── keywords.txt │ └── library.properties ├── micropython.cmake ├── package └── merge_packages.py ├── platform.txt ├── programmers.txt ├── project.cmake ├── tools ├── linux_kflash_v1.3.0.tar.bz2 ├── scripts │ ├── gdm_cmd │ └── kendryte_openocd.cfg ├── sdk │ └── libkendryte.a └── win_kflash_py_v1.3.0.zip └── variants ├── maix_bit └── pins_arduino.h ├── seeed_k210_pi └── pins_arduino.h └── widora_AIRV └── pins_arduino.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | build/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/README.md -------------------------------------------------------------------------------- /boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/boards.txt -------------------------------------------------------------------------------- /cores/k210/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Arduino.h -------------------------------------------------------------------------------- /cores/k210/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Binary.h -------------------------------------------------------------------------------- /cores/k210/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Client.h -------------------------------------------------------------------------------- /cores/k210/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Common.cpp -------------------------------------------------------------------------------- /cores/k210/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Common.h -------------------------------------------------------------------------------- /cores/k210/HardwareI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/HardwareI2C.h -------------------------------------------------------------------------------- /cores/k210/HardwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/HardwareSerial.cpp -------------------------------------------------------------------------------- /cores/k210/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/HardwareSerial.h -------------------------------------------------------------------------------- /cores/k210/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/IPAddress.cpp -------------------------------------------------------------------------------- /cores/k210/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/IPAddress.h -------------------------------------------------------------------------------- /cores/k210/Interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Interrupts.h -------------------------------------------------------------------------------- /cores/k210/PluggableUSB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/PluggableUSB.cpp -------------------------------------------------------------------------------- /cores/k210/PluggableUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/PluggableUSB.h -------------------------------------------------------------------------------- /cores/k210/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Print.cpp -------------------------------------------------------------------------------- /cores/k210/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Print.h -------------------------------------------------------------------------------- /cores/k210/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Printable.h -------------------------------------------------------------------------------- /cores/k210/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/RingBuffer.h -------------------------------------------------------------------------------- /cores/k210/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Server.h -------------------------------------------------------------------------------- /cores/k210/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Stream.cpp -------------------------------------------------------------------------------- /cores/k210/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Stream.h -------------------------------------------------------------------------------- /cores/k210/USBAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/USBAPI.h -------------------------------------------------------------------------------- /cores/k210/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/Udp.h -------------------------------------------------------------------------------- /cores/k210/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/WCharacter.h -------------------------------------------------------------------------------- /cores/k210/WInterrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/WInterrupts.c -------------------------------------------------------------------------------- /cores/k210/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/WString.cpp -------------------------------------------------------------------------------- /cores/k210/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/WString.h -------------------------------------------------------------------------------- /cores/k210/deprecated-avr-comp/avr/dtostrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated-avr-comp/avr/dtostrf.c -------------------------------------------------------------------------------- /cores/k210/deprecated-avr-comp/avr/dtostrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated-avr-comp/avr/dtostrf.h -------------------------------------------------------------------------------- /cores/k210/deprecated-avr-comp/avr/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated-avr-comp/avr/interrupt.h -------------------------------------------------------------------------------- /cores/k210/deprecated-avr-comp/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated-avr-comp/avr/pgmspace.h -------------------------------------------------------------------------------- /cores/k210/deprecated/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated/Client.h -------------------------------------------------------------------------------- /cores/k210/deprecated/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated/HardwareSerial.h -------------------------------------------------------------------------------- /cores/k210/deprecated/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated/IPAddress.h -------------------------------------------------------------------------------- /cores/k210/deprecated/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated/Print.h -------------------------------------------------------------------------------- /cores/k210/deprecated/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated/Printable.h -------------------------------------------------------------------------------- /cores/k210/deprecated/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated/Server.h -------------------------------------------------------------------------------- /cores/k210/deprecated/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated/Stream.h -------------------------------------------------------------------------------- /cores/k210/deprecated/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/deprecated/Udp.h -------------------------------------------------------------------------------- /cores/k210/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/hooks.c -------------------------------------------------------------------------------- /cores/k210/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/itoa.h -------------------------------------------------------------------------------- /cores/k210/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/main.cpp -------------------------------------------------------------------------------- /cores/k210/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/wiring.c -------------------------------------------------------------------------------- /cores/k210/wiring_analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/wiring_analog.c -------------------------------------------------------------------------------- /cores/k210/wiring_digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/wiring_digital.c -------------------------------------------------------------------------------- /cores/k210/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/wiring_private.h -------------------------------------------------------------------------------- /cores/k210/wiring_pulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/wiring_pulse.cpp -------------------------------------------------------------------------------- /cores/k210/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/cores/k210/wiring_shift.c -------------------------------------------------------------------------------- /libraries/SPI/SPIClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/SPI/SPIClass.cpp -------------------------------------------------------------------------------- /libraries/SPI/SPIClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/SPI/SPIClass.h -------------------------------------------------------------------------------- /libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino -------------------------------------------------------------------------------- /libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino -------------------------------------------------------------------------------- /libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/SPI/library.properties -------------------------------------------------------------------------------- /libraries/Wire/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/Wire/Wire.cpp -------------------------------------------------------------------------------- /libraries/Wire/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/Wire/Wire.h -------------------------------------------------------------------------------- /libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/master_reader/master_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/Wire/examples/master_reader/master_reader.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/master_writer/master_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/Wire/examples/master_writer/master_writer.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/slave_receiver/slave_receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/Wire/examples/slave_receiver/slave_receiver.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/slave_sender/slave_sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/Wire/examples/slave_sender/slave_sender.ino -------------------------------------------------------------------------------- /libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/libraries/Wire/library.properties -------------------------------------------------------------------------------- /micropython.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/micropython.cmake -------------------------------------------------------------------------------- /package/merge_packages.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/platform.txt -------------------------------------------------------------------------------- /programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/programmers.txt -------------------------------------------------------------------------------- /project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/project.cmake -------------------------------------------------------------------------------- /tools/linux_kflash_v1.3.0.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/tools/linux_kflash_v1.3.0.tar.bz2 -------------------------------------------------------------------------------- /tools/scripts/gdm_cmd: -------------------------------------------------------------------------------- 1 | target remote localhost:3333 2 | load 3 | -------------------------------------------------------------------------------- /tools/scripts/kendryte_openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/tools/scripts/kendryte_openocd.cfg -------------------------------------------------------------------------------- /tools/sdk/libkendryte.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/tools/sdk/libkendryte.a -------------------------------------------------------------------------------- /tools/win_kflash_py_v1.3.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/tools/win_kflash_py_v1.3.0.zip -------------------------------------------------------------------------------- /variants/maix_bit/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/variants/maix_bit/pins_arduino.h -------------------------------------------------------------------------------- /variants/seeed_k210_pi/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/variants/seeed_k210_pi/pins_arduino.h -------------------------------------------------------------------------------- /variants/widora_AIRV/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-k210/HEAD/variants/widora_AIRV/pins_arduino.h --------------------------------------------------------------------------------