├── .github └── workflows │ └── bsp_test_examples.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── assets ├── Add-BSP-URL.png ├── Install-BSP.png ├── List-examples.png ├── RAK.png ├── Select-Board.png ├── WisBlock.png └── rakstar.jpg ├── boards.txt ├── bootloader ├── WisCore_RAK4631_Board │ ├── WisCore_RAK4631_Board_Bootloader.hex │ └── WisCore_RAK4631_Board_Bootloader.zip └── pca10056 │ ├── pca10056_bootloader-0.6.2_s140_6.1.1.hex │ ├── pca10056_bootloader-0.6.2_s140_6.1.1.zip │ └── update-pca10056_bootloader-0.6.2_nosd.uf2 ├── changelog.md ├── cores └── nRF5 │ ├── Arduino.h │ ├── Client.h │ ├── HardwarePWM.cpp │ ├── HardwarePWM.h │ ├── HardwareSerial.h │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── RingBuffer.cpp │ ├── RingBuffer.h │ ├── Server.h │ ├── Stream.cpp │ ├── Stream.h │ ├── Tone.cpp │ ├── Tone.h │ ├── Uart.cpp │ ├── Uart.h │ ├── Udp.h │ ├── WCharacter.h │ ├── WInterrupts.c │ ├── WInterrupts.h │ ├── WMath.cpp │ ├── WMath.h │ ├── WString.cpp │ ├── WString.h │ ├── WVariant.h │ ├── abi.cpp │ ├── avr │ ├── dtostrf.c │ ├── dtostrf.h │ ├── interrupt.h │ └── pgmspace.h │ ├── binary.h │ ├── common_func.h │ ├── common_inc.h │ ├── delay.c │ ├── delay.h │ ├── freertos │ ├── License │ │ └── license.txt │ ├── Source │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ │ ├── FreeRTOS.h │ │ │ ├── StackMacros.h │ │ │ ├── croutine.h │ │ │ ├── deprecated_definitions.h │ │ │ ├── event_groups.h │ │ │ ├── list.h │ │ │ ├── message_buffer.h │ │ │ ├── mpu_prototypes.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── stack_macros.h │ │ │ ├── stdint.readme │ │ │ ├── stream_buffer.h │ │ │ ├── task.h │ │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ │ ├── MemMang │ │ │ │ └── heap_3.c │ │ │ └── readme.txt │ │ ├── queue.c │ │ ├── readme.txt │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c │ ├── config │ │ └── FreeRTOSConfig.h │ ├── portable │ │ ├── CMSIS │ │ │ └── nrf52 │ │ │ │ ├── port_cmsis.c │ │ │ │ ├── port_cmsis_systick.c │ │ │ │ └── portmacro_cmsis.h │ │ └── GCC │ │ │ └── nrf52 │ │ │ ├── port.c │ │ │ └── portmacro.h │ └── readme.txt │ ├── hooks.c │ ├── itoa.c │ ├── itoa.h │ ├── linker │ ├── gcc_startup_nrf52.S │ ├── gcc_startup_nrf52840.S │ ├── nrf52832_s132_v6.ld │ ├── nrf52840_s140_v6.ld │ └── nrf52_common.ld │ ├── main.cpp │ ├── new.cpp │ ├── nordic │ ├── nrfx │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── drivers │ │ │ ├── include │ │ │ │ ├── nrf_bitmask.h │ │ │ │ ├── nrfx_adc.h │ │ │ │ ├── nrfx_clock.h │ │ │ │ ├── nrfx_comp.h │ │ │ │ ├── nrfx_dppi.h │ │ │ │ ├── nrfx_egu.h │ │ │ │ ├── nrfx_gpiote.h │ │ │ │ ├── nrfx_i2s.h │ │ │ │ ├── nrfx_ipc.h │ │ │ │ ├── nrfx_lpcomp.h │ │ │ │ ├── nrfx_nfct.h │ │ │ │ ├── nrfx_nvmc.h │ │ │ │ ├── nrfx_pdm.h │ │ │ │ ├── nrfx_power.h │ │ │ │ ├── nrfx_power_clock.h │ │ │ │ ├── nrfx_power_compat.h │ │ │ │ ├── nrfx_ppi.h │ │ │ │ ├── nrfx_pwm.h │ │ │ │ ├── nrfx_qdec.h │ │ │ │ ├── nrfx_qspi.h │ │ │ │ ├── nrfx_rng.h │ │ │ │ ├── nrfx_rtc.h │ │ │ │ ├── nrfx_saadc.h │ │ │ │ ├── nrfx_spi.h │ │ │ │ ├── nrfx_spim.h │ │ │ │ ├── nrfx_spis.h │ │ │ │ ├── nrfx_systick.h │ │ │ │ ├── nrfx_temp.h │ │ │ │ ├── nrfx_timer.h │ │ │ │ ├── nrfx_twi.h │ │ │ │ ├── nrfx_twi_twim.h │ │ │ │ ├── nrfx_twim.h │ │ │ │ ├── nrfx_twis.h │ │ │ │ ├── nrfx_uart.h │ │ │ │ ├── nrfx_uarte.h │ │ │ │ ├── nrfx_usbd.h │ │ │ │ ├── nrfx_usbreg.h │ │ │ │ └── nrfx_wdt.h │ │ │ ├── nrfx_common.h │ │ │ ├── nrfx_errors.h │ │ │ └── src │ │ │ │ ├── nrfx_gpiote.c │ │ │ │ ├── nrfx_i2s.c │ │ │ │ ├── nrfx_power.c │ │ │ │ ├── nrfx_pwm.c │ │ │ │ ├── nrfx_qspi.c │ │ │ │ ├── nrfx_spim.c │ │ │ │ ├── nrfx_timer.c │ │ │ │ ├── nrfx_usbd_errata.h │ │ │ │ └── prs │ │ │ │ └── nrfx_prs.h │ │ ├── hal │ │ │ ├── nrf_aar.h │ │ │ ├── nrf_acl.h │ │ │ ├── nrf_adc.h │ │ │ ├── nrf_bprot.h │ │ │ ├── nrf_cache.h │ │ │ ├── nrf_ccm.h │ │ │ ├── nrf_clock.h │ │ │ ├── nrf_comp.h │ │ │ ├── nrf_dcnf.h │ │ │ ├── nrf_dppi.h │ │ │ ├── nrf_ecb.h │ │ │ ├── nrf_egu.h │ │ │ ├── nrf_ficr.h │ │ │ ├── nrf_fpu.h │ │ │ ├── nrf_gpio.h │ │ │ ├── nrf_gpiote.h │ │ │ ├── nrf_i2s.h │ │ │ ├── nrf_ipc.h │ │ │ ├── nrf_kmu.h │ │ │ ├── nrf_lpcomp.h │ │ │ ├── nrf_mpu.h │ │ │ ├── nrf_mutex.h │ │ │ ├── nrf_mwu.h │ │ │ ├── nrf_nfct.h │ │ │ ├── nrf_nvmc.h │ │ │ ├── nrf_oscillators.h │ │ │ ├── nrf_pdm.h │ │ │ ├── nrf_power.h │ │ │ ├── nrf_ppi.h │ │ │ ├── nrf_pwm.h │ │ │ ├── nrf_qdec.h │ │ │ ├── nrf_qspi.h │ │ │ ├── nrf_radio.h │ │ │ ├── nrf_regulators.h │ │ │ ├── nrf_reset.h │ │ │ ├── nrf_rng.h │ │ │ ├── nrf_rtc.h │ │ │ ├── nrf_saadc.h │ │ │ ├── nrf_spi.h │ │ │ ├── nrf_spim.h │ │ │ ├── nrf_spis.h │ │ │ ├── nrf_spu.h │ │ │ ├── nrf_systick.h │ │ │ ├── nrf_temp.h │ │ │ ├── nrf_timer.h │ │ │ ├── nrf_twi.h │ │ │ ├── nrf_twim.h │ │ │ ├── nrf_twis.h │ │ │ ├── nrf_uart.h │ │ │ ├── nrf_uarte.h │ │ │ ├── nrf_usbd.h │ │ │ ├── nrf_usbreg.h │ │ │ ├── nrf_vmc.h │ │ │ ├── nrf_vreqctrl.h │ │ │ └── nrf_wdt.h │ │ ├── helpers │ │ │ └── nrfx_gppi.h │ │ ├── mdk │ │ │ ├── compiler_abstraction.h │ │ │ ├── nrf.h │ │ │ ├── nrf51.h │ │ │ ├── nrf51422_peripherals.h │ │ │ ├── nrf51801_peripherals.h │ │ │ ├── nrf51802_peripherals.h │ │ │ ├── nrf51822_peripherals.h │ │ │ ├── nrf51824_peripherals.h │ │ │ ├── nrf51_bitfields.h │ │ │ ├── nrf51_deprecated.h │ │ │ ├── nrf51_erratas.h │ │ │ ├── nrf51_peripherals.h │ │ │ ├── nrf51_to_nrf52.h │ │ │ ├── nrf51_to_nrf52810.h │ │ │ ├── nrf51_to_nrf52840.h │ │ │ ├── nrf52.h │ │ │ ├── nrf52805.h │ │ │ ├── nrf52805_bitfields.h │ │ │ ├── nrf52805_peripherals.h │ │ │ ├── nrf52810.h │ │ │ ├── nrf52810_bitfields.h │ │ │ ├── nrf52810_name_change.h │ │ │ ├── nrf52810_peripherals.h │ │ │ ├── nrf52810_to_nrf52811.h │ │ │ ├── nrf52811.h │ │ │ ├── nrf52811_bitfields.h │ │ │ ├── nrf52811_peripherals.h │ │ │ ├── nrf52832_peripherals.h │ │ │ ├── nrf52833.h │ │ │ ├── nrf52833_bitfields.h │ │ │ ├── nrf52833_peripherals.h │ │ │ ├── nrf52840.h │ │ │ ├── nrf52840_bitfields.h │ │ │ ├── nrf52840_peripherals.h │ │ │ ├── nrf52_bitfields.h │ │ │ ├── nrf52_erratas.h │ │ │ ├── nrf52_name_change.h │ │ │ ├── nrf52_to_nrf52810.h │ │ │ ├── nrf52_to_nrf52833.h │ │ │ ├── nrf52_to_nrf52840.h │ │ │ ├── nrf53_erratas.h │ │ │ ├── nrf91_erratas.h │ │ │ ├── nrf_erratas.h │ │ │ ├── nrf_peripherals.h │ │ │ ├── system_nrf.h │ │ │ ├── system_nrf52.c │ │ │ ├── system_nrf52.h │ │ │ ├── system_nrf52840.c │ │ │ └── system_nrf52840.h │ │ ├── nrfx.h │ │ └── soc │ │ │ ├── nrfx_coredep.h │ │ │ ├── nrfx_irqs.h │ │ │ ├── nrfx_irqs_nrf51.h │ │ │ ├── nrfx_irqs_nrf52810.h │ │ │ ├── nrfx_irqs_nrf52811.h │ │ │ ├── nrfx_irqs_nrf52832.h │ │ │ ├── nrfx_irqs_nrf52833.h │ │ │ └── nrfx_irqs_nrf52840.h │ ├── nrfx_config.h │ ├── nrfx_glue.h │ ├── nrfx_log.h │ └── softdevice │ │ ├── s132_nrf52_6.1.1_API │ │ └── include │ │ │ ├── ble.h │ │ │ ├── ble_err.h │ │ │ ├── ble_gap.h │ │ │ ├── ble_gatt.h │ │ │ ├── ble_gattc.h │ │ │ ├── ble_gatts.h │ │ │ ├── ble_hci.h │ │ │ ├── ble_l2cap.h │ │ │ ├── ble_ranges.h │ │ │ ├── ble_types.h │ │ │ ├── nrf52 │ │ │ └── nrf_mbr.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_error_sdm.h │ │ │ ├── nrf_error_soc.h │ │ │ ├── nrf_nvic.h │ │ │ ├── nrf_sdm.h │ │ │ ├── nrf_soc.h │ │ │ └── nrf_svc.h │ │ └── s140_nrf52_6.1.1_API │ │ └── include │ │ ├── ble.h │ │ ├── ble_err.h │ │ ├── ble_gap.h │ │ ├── ble_gatt.h │ │ ├── ble_gattc.h │ │ ├── ble_gatts.h │ │ ├── ble_hci.h │ │ ├── ble_l2cap.h │ │ ├── ble_ranges.h │ │ ├── ble_types.h │ │ ├── nrf52 │ │ └── nrf_mbr.h │ │ ├── nrf_error.h │ │ ├── nrf_error_sdm.h │ │ ├── nrf_error_soc.h │ │ ├── nrf_nvic.h │ │ ├── nrf_sdm.h │ │ ├── nrf_soc.h │ │ └── nrf_svc.h │ ├── pins_arduino.h │ ├── pulse.c │ ├── pulse.h │ ├── pulse_asm.S │ ├── rtos.cpp │ ├── rtos.h │ ├── sysview │ ├── Config │ │ ├── Global.h │ │ ├── SEGGER_RTT_Conf.h │ │ ├── SEGGER_SYSVIEW_Conf.h │ │ └── SEGGER_SYSVIEW_Config_FreeRTOS.c │ ├── SEGGER │ │ ├── SEGGER.h │ │ ├── SEGGER_RTT.c │ │ ├── SEGGER_RTT.h │ │ ├── SEGGER_RTT_ASM_ARMv7M.S │ │ ├── SEGGER_RTT_printf.c │ │ ├── SEGGER_SYSVIEW.c │ │ ├── SEGGER_SYSVIEW.h │ │ ├── SEGGER_SYSVIEW_ConfDefaults.h │ │ └── SEGGER_SYSVIEW_Int.h │ ├── SEGGER_SYSVIEW_FreeRTOS.c │ └── SEGGER_SYSVIEW_FreeRTOS.h │ ├── utility │ ├── AdaCallback.c │ ├── AdaCallback.h │ ├── SoftwareTimer.cpp │ ├── SoftwareTimer.h │ ├── TimeoutTimer.h │ ├── adafruit_fifo.cpp │ ├── adafruit_fifo.h │ ├── debug.cpp │ ├── debug.h │ ├── utilities.c │ └── utilities.h │ ├── verify.h │ ├── wiring.c │ ├── wiring.h │ ├── wiring_analog.cpp │ ├── wiring_analog.h │ ├── wiring_analog_nRF52.c │ ├── wiring_constants.h │ ├── wiring_digital.c │ ├── wiring_digital.h │ ├── wiring_private.c │ ├── wiring_private.h │ ├── wiring_shift.c │ └── wiring_shift.h ├── keywords.txt ├── libraries ├── Adafruit_LittleFS │ ├── library.properties │ └── src │ │ ├── Adafruit_LittleFS.cpp │ │ ├── Adafruit_LittleFS.h │ │ ├── Adafruit_LittleFS_File.cpp │ │ ├── Adafruit_LittleFS_File.h │ │ └── littlefs │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lfs.c │ │ ├── lfs.h │ │ ├── lfs_util.c │ │ └── lfs_util.h ├── Adafruit_TinyUSB_Arduino │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.yml │ │ │ ├── config.yml │ │ │ └── feature_request.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── README.md │ ├── changelog.md │ ├── docs │ │ └── examples │ │ │ ├── webusb-rgb │ │ │ ├── application.css │ │ │ ├── application.js │ │ │ ├── index.html │ │ │ └── serial.js │ │ │ └── webusb-serial │ │ │ ├── application.css │ │ │ ├── application.js │ │ │ ├── index.html │ │ │ └── serial.js │ ├── examples │ │ ├── CDC │ │ │ ├── cdc_multi │ │ │ │ ├── .funhouse.test.skip │ │ │ │ ├── .magtag.test.skip │ │ │ │ ├── .metroesp32s2.test.skip │ │ │ │ └── cdc_multi.ino │ │ │ └── no_serial │ │ │ │ ├── .funhouse.test.skip │ │ │ │ ├── .magtag.test.skip │ │ │ │ ├── .metroesp32s2.test.skip │ │ │ │ └── no_serial.ino │ │ ├── Composite │ │ │ ├── mouse_external_flash │ │ │ │ ├── .feather_rp2040_tinyusb.test.skip │ │ │ │ └── mouse_external_flash.ino │ │ │ └── mouse_ramdisk │ │ │ │ ├── mouse_ramdisk.ino │ │ │ │ └── ramdisk.h │ │ ├── HID │ │ │ ├── hid_boot_keyboard │ │ │ │ └── hid_boot_keyboard.ino │ │ │ ├── hid_boot_mouse │ │ │ │ └── hid_boot_mouse.ino │ │ │ ├── hid_composite │ │ │ │ └── hid_composite.ino │ │ │ ├── hid_composite_joy_featherwing │ │ │ │ └── hid_composite_joy_featherwing.ino │ │ │ ├── hid_gamepad │ │ │ │ └── hid_gamepad.ino │ │ │ └── hid_generic_inout │ │ │ │ ├── README.md │ │ │ │ ├── boards.js │ │ │ │ ├── hid_generic_inout.ino │ │ │ │ ├── hid_test.js │ │ │ │ ├── hid_test.py │ │ │ │ └── package.json │ │ ├── MIDI │ │ │ ├── midi_pizza_box_dj │ │ │ │ ├── .cpb.test.only │ │ │ │ ├── .cpx_ada.test.only │ │ │ │ └── midi_pizza_box_dj.ino │ │ │ └── midi_test │ │ │ │ └── midi_test.ino │ │ ├── MassStorage │ │ │ ├── msc_external_flash │ │ │ │ ├── .feather_rp2040_tinyusb.test.skip │ │ │ │ └── msc_external_flash.ino │ │ │ ├── msc_external_flash_sdcard │ │ │ │ ├── .feather_rp2040_tinyusb.test.skip │ │ │ │ └── msc_external_flash_sdcard.ino │ │ │ ├── msc_ramdisk │ │ │ │ ├── msc_ramdisk.ino │ │ │ │ └── ramdisk.h │ │ │ ├── msc_ramdisk_dual │ │ │ │ ├── msc_ramdisk_dual.ino │ │ │ │ └── ramdisk.h │ │ │ ├── msc_sd │ │ │ │ ├── .feather_rp2040_tinyusb.test.skip │ │ │ │ ├── .funhouse.test.skip │ │ │ │ ├── .magtag.test.skip │ │ │ │ ├── .metroesp32s2.test.skip │ │ │ │ └── msc_sd.ino │ │ │ └── msc_sdfat │ │ │ │ ├── .feather_rp2040_tinyusb.test.skip │ │ │ │ ├── .funhouse.test.skip │ │ │ │ ├── .magtag.test.skip │ │ │ │ ├── .metroesp32s2.test.skip │ │ │ │ └── msc_sdfat.ino │ │ └── WebUSB │ │ │ ├── webusb_rgb │ │ │ └── webusb_rgb.ino │ │ │ └── webusb_serial │ │ │ └── webusb_serial.ino │ ├── library.properties │ ├── src │ │ ├── Adafruit_TinyUSB.h │ │ ├── arduino │ │ │ ├── Adafruit_TinyUSB_API.cpp │ │ │ ├── Adafruit_TinyUSB_API.h │ │ │ ├── Adafruit_USBD_CDC.cpp │ │ │ ├── Adafruit_USBD_CDC.h │ │ │ ├── Adafruit_USBD_Device.cpp │ │ │ ├── Adafruit_USBD_Device.h │ │ │ ├── Adafruit_USBD_Interface.h │ │ │ ├── hid │ │ │ │ ├── Adafruit_USBD_HID.cpp │ │ │ │ └── Adafruit_USBD_HID.h │ │ │ ├── midi │ │ │ │ ├── Adafruit_USBD_MIDI.cpp │ │ │ │ └── Adafruit_USBD_MIDI.h │ │ │ ├── msc │ │ │ │ ├── Adafruit_USBD_MSC.cpp │ │ │ │ └── Adafruit_USBD_MSC.h │ │ │ ├── ports │ │ │ │ ├── esp32 │ │ │ │ │ └── Adafruit_TinyUSB_esp32.cpp │ │ │ │ ├── nrf │ │ │ │ │ ├── Adafruit_TinyUSB_nrf.cpp │ │ │ │ │ └── tusb_config_nrf.h │ │ │ │ ├── rp2040 │ │ │ │ │ ├── Adafruit_TinyUSB_rp2040.cpp │ │ │ │ │ └── tusb_config_rp2040.h │ │ │ │ └── samd │ │ │ │ │ ├── Adafruit_TinyUSB_samd.cpp │ │ │ │ │ └── tusb_config_samd.h │ │ │ └── webusb │ │ │ │ ├── Adafruit_USBD_WebUSB.cpp │ │ │ │ └── Adafruit_USBD_WebUSB.h │ │ ├── class │ │ │ ├── audio │ │ │ │ ├── audio.h │ │ │ │ ├── audio_device.c │ │ │ │ └── audio_device.h │ │ │ ├── bth │ │ │ │ ├── bth_device.c │ │ │ │ └── bth_device.h │ │ │ ├── cdc │ │ │ │ ├── cdc.h │ │ │ │ ├── cdc_device.c │ │ │ │ └── cdc_device.h │ │ │ ├── dfu │ │ │ │ ├── dfu.h │ │ │ │ ├── dfu_device.c │ │ │ │ ├── dfu_device.h │ │ │ │ ├── dfu_rt_device.c │ │ │ │ └── dfu_rt_device.h │ │ │ ├── hid │ │ │ │ ├── hid.h │ │ │ │ ├── hid_device.c │ │ │ │ └── hid_device.h │ │ │ ├── midi │ │ │ │ ├── midi.h │ │ │ │ ├── midi_device.c │ │ │ │ └── midi_device.h │ │ │ ├── msc │ │ │ │ ├── msc.h │ │ │ │ ├── msc_device.c │ │ │ │ └── msc_device.h │ │ │ ├── net │ │ │ │ ├── ecm_rndis_device.c │ │ │ │ ├── ncm.h │ │ │ │ ├── ncm_device.c │ │ │ │ └── net_device.h │ │ │ ├── usbtmc │ │ │ │ ├── usbtmc.h │ │ │ │ ├── usbtmc_device.c │ │ │ │ └── usbtmc_device.h │ │ │ └── vendor │ │ │ │ ├── vendor_device.c │ │ │ │ └── vendor_device.h │ │ ├── common │ │ │ ├── tusb_common.h │ │ │ ├── tusb_compiler.h │ │ │ ├── tusb_error.h │ │ │ ├── tusb_fifo.c │ │ │ ├── tusb_fifo.h │ │ │ ├── tusb_timeout.h │ │ │ ├── tusb_types.h │ │ │ └── tusb_verify.h │ │ ├── device │ │ │ ├── dcd.h │ │ │ ├── dcd_attr.h │ │ │ ├── usbd.c │ │ │ ├── usbd.h │ │ │ ├── usbd_control.c │ │ │ └── usbd_pvt.h │ │ ├── osal │ │ │ ├── osal.h │ │ │ ├── osal_freertos.h │ │ │ ├── osal_mynewt.h │ │ │ ├── osal_none.h │ │ │ ├── osal_pico.h │ │ │ └── osal_rtthread.h │ │ ├── portable │ │ │ ├── espressif │ │ │ │ └── esp32sx │ │ │ │ │ └── dcd_esp32sx.c │ │ │ ├── microchip │ │ │ │ └── samd │ │ │ │ │ └── dcd_samd.c │ │ │ ├── nordic │ │ │ │ └── nrf5x │ │ │ │ │ └── dcd_nrf5x.c │ │ │ ├── nxp │ │ │ │ └── transdimension │ │ │ │ │ ├── common_transdimension.h │ │ │ │ │ └── dcd_transdimension.c │ │ │ └── raspberrypi │ │ │ │ └── rp2040 │ │ │ │ ├── dcd_rp2040.c │ │ │ │ ├── hcd_rp2040.c │ │ │ │ ├── rp2040_usb.c │ │ │ │ └── rp2040_usb.h │ │ ├── tusb.c │ │ ├── tusb.h │ │ ├── tusb_config.h │ │ └── tusb_option.h │ └── tools │ │ └── update_tinyusb.py ├── Adafruit_nRFCrypto │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── hash │ │ │ ├── .feather52832.test.skip │ │ │ ├── hash.ino │ │ │ └── input_data.bin │ │ └── random │ │ │ ├── .feather52832.test.skip │ │ │ └── random.ino │ ├── library.properties │ └── src │ │ ├── Adafruit_nRFCrypto.cpp │ │ ├── Adafruit_nRFCrypto.h │ │ ├── cortex-m4 │ │ ├── fpv4-sp-d16-hard │ │ │ └── libnrf_cc310_0.9.13-no-interrupts.a │ │ └── license.txt │ │ ├── ecc │ │ ├── nRFCrypto_ECC.cpp │ │ ├── nRFCrypto_ECC.h │ │ ├── nRFCrypto_ECC_PrivateKey.cpp │ │ ├── nRFCrypto_ECC_PrivateKey.h │ │ ├── nRFCrypto_ECC_PublicKey.cpp │ │ └── nRFCrypto_ECC_PublicKey.h │ │ ├── nRFCrypto_Hash.cpp │ │ ├── nRFCrypto_Hash.h │ │ ├── nRFCrypto_Random.cpp │ │ ├── nRFCrypto_Random.h │ │ └── nrf_cc310 │ │ ├── include │ │ ├── ccsw_crys_rsa_shared_types.h │ │ ├── crys_aesccm.h │ │ ├── crys_aesccm_error.h │ │ ├── crys_chacha.h │ │ ├── crys_chacha_error.h │ │ ├── crys_chacha_poly.h │ │ ├── crys_chacha_poly_error.h │ │ ├── crys_common.h │ │ ├── crys_common_error.h │ │ ├── crys_dh.h │ │ ├── crys_dh_error.h │ │ ├── crys_dh_kg.h │ │ ├── crys_ec_edw_api.h │ │ ├── crys_ec_mont_api.h │ │ ├── crys_ec_mont_edw_error.h │ │ ├── crys_ecpki_build.h │ │ ├── crys_ecpki_dh.h │ │ ├── crys_ecpki_domain.h │ │ ├── crys_ecpki_ecdsa.h │ │ ├── crys_ecpki_error.h │ │ ├── crys_ecpki_kg.h │ │ ├── crys_ecpki_types.h │ │ ├── crys_error.h │ │ ├── crys_hash.h │ │ ├── crys_hash_defs.h │ │ ├── crys_hash_error.h │ │ ├── crys_hkdf.h │ │ ├── crys_hkdf_error.h │ │ ├── crys_hmac.h │ │ ├── crys_hmac_defs.h │ │ ├── crys_hmac_error.h │ │ ├── crys_kdf.h │ │ ├── crys_kdf_error.h │ │ ├── crys_pka_defs_hw.h │ │ ├── crys_poly.h │ │ ├── crys_poly_error.h │ │ ├── crys_rnd.h │ │ ├── crys_rnd_error.h │ │ ├── crys_rsa_build.h │ │ ├── crys_rsa_error.h │ │ ├── crys_rsa_kg.h │ │ ├── crys_rsa_prim.h │ │ ├── crys_rsa_schemes.h │ │ ├── crys_rsa_types.h │ │ ├── crys_srp.h │ │ ├── crys_srp_error.h │ │ ├── dx_reg_base_host.h │ │ ├── sns_silib.h │ │ ├── ssi_aes.h │ │ ├── ssi_aes_defs.h │ │ ├── ssi_aes_error.h │ │ ├── ssi_bitops.h │ │ ├── ssi_pal_abort.h │ │ ├── ssi_pal_barrier.h │ │ ├── ssi_pal_compiler.h │ │ ├── ssi_pal_dma.h │ │ ├── ssi_pal_dma_defs.h │ │ ├── ssi_pal_dma_plat.h │ │ ├── ssi_pal_error.h │ │ ├── ssi_pal_file.h │ │ ├── ssi_pal_file_plat.h │ │ ├── ssi_pal_fips.h │ │ ├── ssi_pal_init.h │ │ ├── ssi_pal_list.h │ │ ├── ssi_pal_log.h │ │ ├── ssi_pal_mem.h │ │ ├── ssi_pal_memmap.h │ │ ├── ssi_pal_mutex.h │ │ ├── ssi_pal_mutex_plat.h │ │ ├── ssi_pal_perf.h │ │ ├── ssi_pal_perf_plat.h │ │ ├── ssi_pal_sem.h │ │ ├── ssi_pal_sem_plat.h │ │ ├── ssi_pal_trng.h │ │ ├── ssi_pal_types.h │ │ ├── ssi_pal_types_plat.h │ │ ├── ssi_pka_hw_plat_defs.h │ │ ├── ssi_regs.h │ │ ├── ssi_sram_map.h │ │ ├── ssi_util_defs.h │ │ ├── ssi_util_error.h │ │ ├── ssi_util_key_derivation.h │ │ └── ssi_util_key_derivation_defs.h │ │ └── license.txt ├── BLEAdafruitService │ ├── library.properties │ └── src │ │ ├── BLEAdafruitService.h │ │ └── services │ │ ├── BLEAdafruitAccel.cpp │ │ ├── BLEAdafruitAccel.h │ │ ├── BLEAdafruitAddressablePixel.cpp │ │ ├── BLEAdafruitAddressablePixel.h │ │ ├── BLEAdafruitBaro.cpp │ │ ├── BLEAdafruitBaro.h │ │ ├── BLEAdafruitButton.cpp │ │ ├── BLEAdafruitButton.h │ │ ├── BLEAdafruitColor.cpp │ │ ├── BLEAdafruitColor.h │ │ ├── BLEAdafruitGesture.cpp │ │ ├── BLEAdafruitGesture.h │ │ ├── BLEAdafruitGyro.cpp │ │ ├── BLEAdafruitGyro.h │ │ ├── BLEAdafruitHumid.cpp │ │ ├── BLEAdafruitHumid.h │ │ ├── BLEAdafruitLightSensor.cpp │ │ ├── BLEAdafruitLightSensor.h │ │ ├── BLEAdafruitMagnetic.cpp │ │ ├── BLEAdafruitMagnetic.h │ │ ├── BLEAdafruitProximity.cpp │ │ ├── BLEAdafruitProximity.h │ │ ├── BLEAdafruitQuaternion.cpp │ │ ├── BLEAdafruitQuaternion.h │ │ ├── BLEAdafruitSensor.cpp │ │ ├── BLEAdafruitSensor.h │ │ ├── BLEAdafruitSound.cpp │ │ ├── BLEAdafruitSound.h │ │ ├── BLEAdafruitTemperature.cpp │ │ ├── BLEAdafruitTemperature.h │ │ ├── BLEAdafruitTone.cpp │ │ └── BLEAdafruitTone.h ├── BLEHomekit │ ├── README.md │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── BLEHomekit.cpp │ │ ├── BLEHomekit.h │ │ ├── HAPCharacteristic.cpp │ │ ├── HAPCharacteristic.h │ │ ├── HAPProcedure.cpp │ │ ├── HAPProcedure.h │ │ ├── HAPService.cpp │ │ ├── HAPService.h │ │ ├── HAPUuid.h │ │ ├── crypto │ │ ├── crypto.c │ │ ├── crypto.h │ │ ├── random.c │ │ ├── random.h │ │ ├── srp │ │ │ ├── bignum.c │ │ │ ├── bignum.h │ │ │ ├── bn_mul.h │ │ │ ├── check_config.h │ │ │ ├── config.h │ │ │ ├── memory_buffer_alloc.c │ │ │ ├── memory_buffer_alloc.h │ │ │ ├── platform.c │ │ │ ├── platform.h │ │ │ ├── srp.c │ │ │ └── srp.h │ │ └── tweetnacl-modified │ │ │ ├── tweetnacl.c │ │ │ └── tweetnacl.h │ │ └── service │ │ ├── HAPAccessoryInfo.cpp │ │ ├── HAPAccessoryInfo.h │ │ ├── HAPLightBulb.cpp │ │ ├── HAPLightBulb.h │ │ ├── HAPPairing.cpp │ │ ├── HAPPairing.h │ │ ├── HAPProtocol.cpp │ │ └── HAPProtocol.h ├── Bluefruit52Lib │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── Central │ │ │ ├── central_bleuart │ │ │ │ └── central_bleuart.ino │ │ │ ├── central_bleuart_multi │ │ │ │ └── central_bleuart_multi.ino │ │ │ ├── central_custom_hrm │ │ │ │ └── central_custom_hrm.ino │ │ │ ├── central_hid │ │ │ │ └── central_hid.ino │ │ │ ├── central_pairing │ │ │ │ └── central_pairing.ino │ │ │ ├── central_scan │ │ │ │ └── central_scan.ino │ │ │ ├── central_scan_advanced │ │ │ │ └── central_scan_advanced.ino │ │ │ ├── central_throughput │ │ │ │ └── central_throughput.ino │ │ │ └── central_ti_sensortag_optical │ │ │ │ └── central_ti_sensortag_optical.ino │ │ ├── DualRoles │ │ │ └── dual_bleuart │ │ │ │ └── dual_bleuart.ino │ │ ├── Hardware │ │ │ ├── Fading │ │ │ │ └── Fading.ino │ │ │ ├── Serial1_test │ │ │ │ ├── .feather52832.test.skip │ │ │ │ └── Serial1_test.ino │ │ │ ├── SerialEcho │ │ │ │ └── SerialEcho.ino │ │ │ ├── adc │ │ │ │ └── adc.ino │ │ │ ├── adc_vbat │ │ │ │ ├── .cluenrf52840.test.skip │ │ │ │ ├── .itsybitsy52840.test.skip │ │ │ │ └── adc_vbat.ino │ │ │ ├── blink_sleep │ │ │ │ └── blink_sleep.ino │ │ │ ├── blinky │ │ │ │ └── blinky.ino │ │ │ ├── dfu_ota │ │ │ │ └── dfu_ota.ino │ │ │ ├── dfu_serial │ │ │ │ └── dfu_serial.ino │ │ │ ├── digital_interrupt_deferred │ │ │ │ └── digital_interrupt_deferred.ino │ │ │ ├── fwinfo │ │ │ │ └── fwinfo.ino │ │ │ ├── gpstest_swuart │ │ │ │ └── gpstest_swuart.ino │ │ │ ├── hw_systick │ │ │ │ └── hw_systick.ino │ │ │ ├── hwinfo │ │ │ │ └── hwinfo.ino │ │ │ ├── hwpwm │ │ │ │ └── hwpwm.ino │ │ │ ├── meminfo │ │ │ │ └── meminfo.ino │ │ │ ├── nfc_to_gpio │ │ │ │ └── nfc_to_gpio.ino │ │ │ ├── rtos_scheduler │ │ │ │ └── rtos_scheduler.ino │ │ │ ├── software_timer │ │ │ │ └── software_timer.ino │ │ │ └── tone_happy_birthday │ │ │ │ └── tone_happy_birthday.ino │ │ ├── Peripheral │ │ │ ├── StandardFirmataBLE │ │ │ │ ├── LICENSE.txt │ │ │ │ └── StandardFirmataBLE.ino │ │ │ ├── adv_AdafruitColor │ │ │ │ └── adv_AdafruitColor.ino │ │ │ ├── adv_advanced │ │ │ │ └── adv_advanced.ino │ │ │ ├── ancs │ │ │ │ └── ancs.ino │ │ │ ├── ancs_arcada │ │ │ │ ├── .cluenrf52840.test.only │ │ │ │ ├── .cplaynrf52840.test.only │ │ │ │ └── ancs_arcada.ino │ │ │ ├── ancs_oled │ │ │ │ └── ancs_oled.ino │ │ │ ├── arduino_science_journal │ │ │ │ ├── .cluenrf52840.test.only │ │ │ │ ├── .cplaynrf52840.test.only │ │ │ │ ├── .feather52840sense.test.only │ │ │ │ └── arduino_science_journal.ino │ │ │ ├── beacon │ │ │ │ └── beacon.ino │ │ │ ├── blehid_camerashutter │ │ │ │ └── blehid_camerashutter.ino │ │ │ ├── blehid_gamepad │ │ │ │ └── blehid_gamepad.ino │ │ │ ├── blehid_keyboard │ │ │ │ └── blehid_keyboard.ino │ │ │ ├── blehid_keyscan │ │ │ │ └── blehid_keyscan.ino │ │ │ ├── blehid_mouse │ │ │ │ └── blehid_mouse.ino │ │ │ ├── blemidi │ │ │ │ └── blemidi.ino │ │ │ ├── bleuart │ │ │ │ └── bleuart.ino │ │ │ ├── bleuart_multi │ │ │ │ └── bleuart_multi.ino │ │ │ ├── blinky_ota │ │ │ │ └── blinky_ota.ino │ │ │ ├── bluefruit_playground │ │ │ │ ├── .cluenrf52840.test.only │ │ │ │ ├── .cplaynrf52840.test.only │ │ │ │ ├── .feather52840sense.test.only │ │ │ │ └── bluefruit_playground.ino │ │ │ ├── clearbonds │ │ │ │ └── clearbonds.ino │ │ │ ├── client_cts │ │ │ │ └── client_cts.ino │ │ │ ├── client_cts_oled │ │ │ │ └── client_cts_oled.ino │ │ │ ├── controller │ │ │ │ ├── controller.ino │ │ │ │ └── packetParser.cpp │ │ │ ├── custom_hrm │ │ │ │ └── custom_hrm.ino │ │ │ ├── custom_htm │ │ │ │ ├── IEEE11073float.cpp │ │ │ │ ├── IEEE11073float.h │ │ │ │ └── custom_htm.ino │ │ │ ├── eddystone_url │ │ │ │ └── eddystone_url.ino │ │ │ ├── image_eink_transfer │ │ │ │ └── image_eink_transfer.ino │ │ │ ├── image_transfer │ │ │ │ └── image_transfer.ino │ │ │ ├── neomatrix │ │ │ │ └── neomatrix.ino │ │ │ ├── neopixel │ │ │ │ └── neopixel.ino │ │ │ ├── nrf_blinky │ │ │ │ └── nrf_blinky.ino │ │ │ ├── pairing_passkey │ │ │ │ └── pairing_passkey.ino │ │ │ ├── pairing_passkey_arcada │ │ │ │ ├── .cluenrf52840.test.only │ │ │ │ ├── .cplaynrf52840.test.only │ │ │ │ └── pairing_passkey_arcada.ino │ │ │ ├── pairing_pin │ │ │ │ └── pairing_pin.ino │ │ │ ├── rssi_callback │ │ │ │ └── rssi_callback.ino │ │ │ ├── rssi_poll │ │ │ │ └── rssi_poll.ino │ │ │ ├── tf4micro-motion-kit │ │ │ │ ├── .cluenrf52840.test.only │ │ │ │ ├── .feather52840sense.test.only │ │ │ │ ├── ble_file_transfer.cpp │ │ │ │ ├── ble_file_transfer.h │ │ │ │ ├── data_provider.cpp │ │ │ │ ├── data_provider.h │ │ │ │ ├── model_tester.cpp │ │ │ │ ├── model_tester.h │ │ │ │ └── tf4micro-motion-kit.ino │ │ │ └── throughput │ │ │ │ └── throughput.ino │ │ └── Projects │ │ │ ├── homekit │ │ │ └── homekit_lightbulb │ │ │ │ ├── .all.test.skip │ │ │ │ └── homekit_lightbulb.ino │ │ │ └── rssi_proximity │ │ │ ├── README.md │ │ │ ├── rssi_proximity_central │ │ │ └── rssi_proximity_central.ino │ │ │ └── rssi_proximity_peripheral │ │ │ └── rssi_proximity_peripheral.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── BLEAdvertising.cpp │ │ ├── BLEAdvertising.h │ │ ├── BLECentral.cpp │ │ ├── BLECentral.h │ │ ├── BLECharacteristic.cpp │ │ ├── BLECharacteristic.h │ │ ├── BLEClientCharacteristic.cpp │ │ ├── BLEClientCharacteristic.h │ │ ├── BLEClientService.cpp │ │ ├── BLEClientService.h │ │ ├── BLEConnection.cpp │ │ ├── BLEConnection.h │ │ ├── BLEDiscovery.cpp │ │ ├── BLEDiscovery.h │ │ ├── BLEGatt.cpp │ │ ├── BLEGatt.h │ │ ├── BLEPeriph.cpp │ │ ├── BLEPeriph.h │ │ ├── BLEScanner.cpp │ │ ├── BLEScanner.h │ │ ├── BLESecurity.cpp │ │ ├── BLESecurity.h │ │ ├── BLEService.cpp │ │ ├── BLEService.h │ │ ├── BLEUuid.cpp │ │ ├── BLEUuid.h │ │ ├── bluefruit.cpp │ │ ├── bluefruit.h │ │ ├── bluefruit_common.h │ │ ├── clients │ │ ├── BLEAncs.cpp │ │ ├── BLEAncs.h │ │ ├── BLEClientBas.cpp │ │ ├── BLEClientBas.h │ │ ├── BLEClientCts.cpp │ │ ├── BLEClientCts.h │ │ ├── BLEClientDis.cpp │ │ ├── BLEClientDis.h │ │ ├── BLEClientHidAdafruit.cpp │ │ ├── BLEClientHidAdafruit.h │ │ ├── BLEClientUart.cpp │ │ └── BLEClientUart.h │ │ ├── services │ │ ├── BLEBas.cpp │ │ ├── BLEBas.h │ │ ├── BLEBeacon.cpp │ │ ├── BLEBeacon.h │ │ ├── BLEDfu.cpp │ │ ├── BLEDfu.h │ │ ├── BLEDis.cpp │ │ ├── BLEDis.h │ │ ├── BLEHidAdafruit.cpp │ │ ├── BLEHidAdafruit.h │ │ ├── BLEHidGamepad.cpp │ │ ├── BLEHidGamepad.h │ │ ├── BLEHidGeneric.cpp │ │ ├── BLEHidGeneric.h │ │ ├── BLEMidi.cpp │ │ ├── BLEMidi.h │ │ ├── BLEUart.cpp │ │ ├── BLEUart.h │ │ ├── EddyStone.cpp │ │ └── EddyStone.h │ │ └── utility │ │ ├── AdaMsg.cpp │ │ ├── AdaMsg.h │ │ ├── bonding.cpp │ │ ├── bonding.h │ │ └── bootloader_util.c ├── I2S │ ├── examples │ │ └── LookBack │ │ │ └── LookBack.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── I2S.cpp │ │ ├── I2S.h │ │ ├── I2SDoubleBuffer.cpp │ │ └── I2SDoubleBuffer.h ├── InternalFileSytem │ ├── examples │ │ ├── Internal_Format │ │ │ └── Internal_Format.ino │ │ ├── Internal_ListFiles │ │ │ └── Internal_ListFiles.ino │ │ ├── Internal_ReadWrite │ │ │ └── Internal_ReadWrite.ino │ │ └── Internal_StressTest │ │ │ └── Internal_StressTest.ino │ ├── library.properties │ └── src │ │ ├── InternalFileSystem.cpp │ │ ├── InternalFileSystem.h │ │ └── flash │ │ ├── flash_cache.c │ │ ├── flash_cache.h │ │ ├── flash_nrf5x.c │ │ └── flash_nrf5x.h ├── PDM │ ├── examples │ │ ├── record_mono │ │ │ └── record_mono.ino │ │ └── record_stereo │ │ │ └── record_stereo.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── PDM.cpp │ │ ├── PDM.h │ │ └── utility │ │ ├── PDMDoubleBuffer.cpp │ │ └── PDMDoubleBuffer.h ├── RAK_examples │ ├── examples │ │ └── RAK4631 │ │ │ ├── Communications │ │ │ ├── BLE │ │ │ │ ├── BLE_Health │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ ├── 895931143006839550.jpg │ │ │ │ │ ├── BLE_Health.ino │ │ │ │ │ └── BloodOxygen_MAX30105.ino │ │ │ │ ├── RAK12010_Ble │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ └── RAK12010_Ble.ino │ │ │ │ ├── RAK12019_UVlight_LTR390_Ble │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ └── RAK12019_UVlight_LTR390_Ble.ino │ │ │ │ ├── README.md │ │ │ │ ├── ble_ota_dfu │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ ├── README.MD │ │ │ │ │ └── ble_ota_dfu.ino │ │ │ │ ├── ble_proximity_sensing │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ ├── README.md │ │ │ │ │ └── ble_proximity_sensing.ino │ │ │ │ └── ble_uart │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ ├── README.MD │ │ │ │ │ └── ble_uart.ino │ │ │ ├── Cellular │ │ │ │ ├── RAK13101_MC20_Module │ │ │ │ │ ├── GPS │ │ │ │ │ │ └── GPS.ino │ │ │ │ │ ├── GSM_TCP │ │ │ │ │ │ └── GSM_TCP.ino │ │ │ │ │ └── Unvarnished_Transmission │ │ │ │ │ │ └── Unvarnished_Transmission.ino │ │ │ │ └── RAK5860_BG77_Module │ │ │ │ │ ├── BG77_Unvarnished_Transmission │ │ │ │ │ └── BG77_Unvarnished_Transmission.ino │ │ │ │ │ ├── Cellular_Ping │ │ │ │ │ └── Cellular_Ping.ino │ │ │ │ │ ├── Hologram_Ping_LTE │ │ │ │ │ └── Hologram_Ping_LTE.ino │ │ │ │ │ └── Hologram_Tcp │ │ │ │ │ └── Hologram_Tcp.ino │ │ │ ├── Ethernet │ │ │ │ ├── RAK13800_Ethernet_DHCP_W5100S │ │ │ │ │ └── RAK13800_Ethernet_DHCP_W5100S.ino │ │ │ │ ├── RAK13800_Ethernet_HTTP_Client_W5100S │ │ │ │ │ └── RAK13800_Ethernet_HTTP_Client_W5100S.ino │ │ │ │ ├── RAK13800_Ethernet_HTTP_Server_W5100S │ │ │ │ │ └── RAK13800_Ethernet_HTTP_Server_W5100S.ino │ │ │ │ ├── RAK13800_Ethernet_MQTT_Publish_W5100S │ │ │ │ │ └── RAK13800_Ethernet_MQTT_Publish_W5100S.ino │ │ │ │ ├── RAK13800_Ethernet_MQTT_Subscribe_W5100S │ │ │ │ │ └── RAK13800_Ethernet_MQTT_Subscribe_W5100S.ino │ │ │ │ ├── RAK13800_Ethernet_TCP_Client_W5100S │ │ │ │ │ └── RAK13800_Ethernet_TCP_Client_W5100S.ino │ │ │ │ ├── RAK13800_Ethernet_TCP_Server_W5100S │ │ │ │ │ └── RAK13800_Ethernet_TCP_Server_W5100S.ino │ │ │ │ └── RAK13800_Ethernet_UDP_W5100S │ │ │ │ │ └── RAK13800_Ethernet_UDP_W5100S.ino │ │ │ ├── LoRa │ │ │ │ ├── LoRaP2P │ │ │ │ │ ├── LoRaP2P_RX │ │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ │ └── LoRaP2P_RX.ino │ │ │ │ │ ├── LoRaP2P_TX │ │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ │ └── LoRaP2P_TX.ino │ │ │ │ │ └── README.md │ │ │ │ ├── LoRaWAN │ │ │ │ │ ├── LoRaWAN_OTAA_ABP │ │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ │ └── LoRaWAN_OTAA_ABP.ino │ │ │ │ │ ├── Low_Power_Example.md │ │ │ │ │ ├── RAK4631-DeepSleep-LoRaWan │ │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ │ ├── RAK4631-DeepSleep-LoRaWan.ino │ │ │ │ │ │ ├── lora_handler.cpp │ │ │ │ │ │ └── main.h │ │ │ │ │ └── README.md │ │ │ │ └── README.md │ │ │ ├── UWB │ │ │ │ └── RAK13801_UWB_module │ │ │ │ │ ├── BasicConnectivityTest │ │ │ │ │ ├── BasicConnectivityTest.ino │ │ │ │ │ ├── inols-clangd-err.log │ │ │ │ │ ├── inols-clangd.log │ │ │ │ │ ├── inols-err.log │ │ │ │ │ └── inols.log │ │ │ │ │ ├── BasicReceiver │ │ │ │ │ └── BasicReceiver.ino │ │ │ │ │ ├── BasicSender │ │ │ │ │ ├── BasicSender.ino │ │ │ │ │ ├── inols-clangd-err.log │ │ │ │ │ ├── inols-clangd.log │ │ │ │ │ ├── inols-err.log │ │ │ │ │ └── inols.log │ │ │ │ │ ├── SimpleAntennaCalibration │ │ │ │ │ └── SimpleAntennaCalibration.ino │ │ │ │ │ ├── StandardRTLSAnchorB_TWR │ │ │ │ │ ├── StandardRTLSAnchorB_TWR.ino │ │ │ │ │ ├── inols-clangd-err.log │ │ │ │ │ ├── inols-clangd.log │ │ │ │ │ ├── inols-err.log │ │ │ │ │ └── inols.log │ │ │ │ │ ├── StandardRTLSAnchorC_TWR │ │ │ │ │ ├── StandardRTLSAnchorC_TWR.ino │ │ │ │ │ ├── inols-clangd-err.log │ │ │ │ │ ├── inols-clangd.log │ │ │ │ │ ├── inols-err.log │ │ │ │ │ └── inols.log │ │ │ │ │ ├── StandardRTLSAnchorMain_TWR │ │ │ │ │ ├── StandardRTLSAnchorMain_TWR.ino │ │ │ │ │ ├── inols-clangd-err.log │ │ │ │ │ ├── inols-clangd.log │ │ │ │ │ ├── inols-err.log │ │ │ │ │ └── inols.log │ │ │ │ │ ├── StandardRTLSTag_TWR │ │ │ │ │ └── StandardRTLSTag_TWR.ino │ │ │ │ │ ├── StandardRTLSTag_TWR_1 │ │ │ │ │ ├── StandardRTLSTag_TWR_1.ino │ │ │ │ │ ├── inols-clangd-err.log │ │ │ │ │ ├── inols-clangd.log │ │ │ │ │ ├── inols-err.log │ │ │ │ │ └── inols.log │ │ │ │ │ ├── TwoWayRangingInitiator │ │ │ │ │ ├── TwoWayRangingInitiator.ino │ │ │ │ │ ├── inols-clangd-err.log │ │ │ │ │ ├── inols-clangd.log │ │ │ │ │ ├── inols-err.log │ │ │ │ │ └── inols.log │ │ │ │ │ └── TwoWayRangingResponder │ │ │ │ │ ├── TwoWayRangingResponder.ino │ │ │ │ │ ├── inols-clangd-err.log │ │ │ │ │ ├── inols-clangd.log │ │ │ │ │ ├── inols-err.log │ │ │ │ │ └── inols.log │ │ │ └── WiFi │ │ │ │ ├── AT_Command_Test │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── AT_Command_Test.ino │ │ │ │ ├── README.md │ │ │ │ └── connect_ap │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── connect_ap.ino │ │ │ ├── IO │ │ │ ├── RAK12001_FingerPrint │ │ │ │ └── RAK12001_FingerPrint.ino │ │ │ ├── RAK12004_MQ2_read │ │ │ │ └── RAK12004_MQ2_read.ino │ │ │ ├── RAK12005_WaterDetector │ │ │ │ └── RAK12005_WaterDetector.ino │ │ │ ├── RAK12006_MotionDetection │ │ │ │ └── RAK12006_MotionDetection.ino │ │ │ ├── RAK12007_OLED_Show_Distance │ │ │ │ └── RAK12007_OLED_Show_Distance.ino │ │ │ ├── RAK12008_CO2_Detection │ │ │ │ ├── RAK12008_CO2_BasicReadings_STC31 │ │ │ │ │ └── RAK12008_CO2_BasicReadings_STC31.ino │ │ │ │ ├── RAK12008_CO2_FRC_ASC_STC31 │ │ │ │ │ └── RAK12008_CO2_FRC_ASC_STC31.ino │ │ │ │ ├── RAK12008_CO2_PHTCompensation_STC31 │ │ │ │ │ └── RAK12008_CO2_PHTCompensation_STC31.ino │ │ │ │ └── RAK12008_CO2_SelfTest_STC31 │ │ │ │ │ └── RAK12008_CO2_SelfTest_STC31.ino │ │ │ ├── RAK12009_MQ3_AlcoholDetection │ │ │ │ └── RAK12009_MQ3_AlcoholDetection.ino │ │ │ ├── RAK12012_HeartRate │ │ │ │ ├── RAK12012_BloodOxygen_MAX30105 │ │ │ │ │ └── RAK12012_BloodOxygen_MAX30105.ino │ │ │ │ ├── RAK12012_Health_Store │ │ │ │ │ ├── BloodOxygen_MAX30105.ino │ │ │ │ │ └── RAK12012_Health_Store.ino │ │ │ │ ├── RAK12012_HeartRate_Interrupt_MAX30105 │ │ │ │ │ └── RAK12012_HeartRate_Interrupt_MAX30105.ino │ │ │ │ └── RAK12012_HeartRate_MAX30105 │ │ │ │ │ └── RAK12012_HeartRate_MAX30105.ino │ │ │ ├── RAK12013_Radar_3GHZ │ │ │ │ └── RAK12013_Radar_3GHZ.ino │ │ │ ├── RAK12014_VL53L0X_Laser_Radar │ │ │ │ ├── RAK12014_Distance_Detection │ │ │ │ │ └── RAK12014_Distance_Detection.ino │ │ │ │ ├── RAK12014_Gesture_Swipe │ │ │ │ │ └── RAK12014_Gesture_Swipe.ino │ │ │ │ └── RAK12014_Gesture_Tap │ │ │ │ │ └── RAK12014_Gesture_Tap.ino │ │ │ ├── RAK12015_Shock_801S │ │ │ │ └── RAK12015_Shock_801S.ino │ │ │ ├── RAK12016_Flex_FSL0095103ST │ │ │ │ └── RAK12016_Flex_FSL0095103ST.ino │ │ │ ├── RAK12017_IR_ITR20001T │ │ │ │ ├── RAK12017_Detect_Color │ │ │ │ │ └── RAK12017_Detect_Color.ino │ │ │ │ ├── RAK12017_Detect_Interrupt │ │ │ │ │ └── RAK12017_Detect_Interrupt.ino │ │ │ │ └── RAK12017_Detect_Switch │ │ │ │ │ └── RAK12017_Detect_Switch.ino │ │ │ ├── RAK12018_CodeReader_LV3296 │ │ │ │ └── RAK12018_CodeReader_LV3296.ino │ │ │ ├── RAK12029-LDC1614 │ │ │ │ ├── Multichannel_detection │ │ │ │ │ └── Multichannel_detection.ino │ │ │ │ └── Single_channel_detection │ │ │ │ │ └── Single_channel_detection.ino │ │ │ ├── RAK12031_T_Fork_SX1041 │ │ │ │ └── RAK12031_T_Fork_SX1041.ino │ │ │ ├── RAK12035_SoilMoisture │ │ │ │ ├── RAK12035_Calibration │ │ │ │ │ └── RAK12035_Calibration.ino │ │ │ │ ├── RAK12035_Change_Address │ │ │ │ │ └── RAK12035_Change_Address.ino │ │ │ │ ├── RAK12035_LowPower │ │ │ │ │ └── RAK12035_LowPower.ino │ │ │ │ └── RAK12035_Soil_Humidity │ │ │ │ │ └── RAK12035_Soil_Humidity.ino │ │ │ ├── RAK12039_Dust_Detection │ │ │ │ └── RAK12039_Dust_Read_PMSA003I │ │ │ │ │ └── RAK12039_Dust_Read_PMSA003I.ino │ │ │ ├── RAK12047_VOC_GetVOCIndex_SGP40 │ │ │ │ └── RAK12047_VOC_GetVOCIndex_SGP40.ino │ │ │ ├── RAK13001_Relay_OUT_Optocoupled_IN │ │ │ │ └── RAK13001_Relay_OUT_Optocoupled_IN.ino │ │ │ ├── RAK13003_GPIO_Expander_IO_MCP32 │ │ │ │ └── RAK13003_GPIO_Expander_IO_MCP32.ino │ │ │ ├── RAK13003_GPIO_Expander_Interrupt_MCP32 │ │ │ │ └── RAK13003_GPIO_Expander_Interrupt_MCP32.ino │ │ │ ├── RAK13003_GPIO_Expander_Polls_MCP32 │ │ │ │ └── RAK13003_GPIO_Expander_Polls_MCP32.ino │ │ │ ├── RAK13004_PWM_Expander_PCA9685 │ │ │ │ └── RAK13004_PWM_Expander_PCA9685.ino │ │ │ ├── RAK13005_LIN_BUS │ │ │ │ ├── LINBusCommunication │ │ │ │ │ ├── RAK13005_linbus_master │ │ │ │ │ │ └── RAK13005_linbus_master.ino │ │ │ │ │ └── RAK13005_linbus_slaver │ │ │ │ │ │ └── RAK13005_linbus_slaver.ino │ │ │ │ └── LINBusControlLED │ │ │ │ │ ├── RAK13005_linbus_master │ │ │ │ │ └── RAK13005_linbus_master.ino │ │ │ │ │ └── RAK13005_linbus_slaver │ │ │ │ │ └── RAK13005_linbus_slaver.ino │ │ │ ├── RAK13006_CAN_BUS │ │ │ │ ├── RAK13006_CAN_LoopBack │ │ │ │ │ └── RAK13006_CAN_LoopBack.ino │ │ │ │ ├── RAK13006_CAN_Master │ │ │ │ │ └── RAK13006_CAN_Master.ino │ │ │ │ └── RAK13006_CAN_Slave │ │ │ │ │ └── RAK13006_CAN_Slave.ino │ │ │ ├── RAK13007_Relay_G5LE-14-DC3 │ │ │ │ └── RAK13007_Relay_G5LE-14-DC3.ino │ │ │ ├── RAK13010_SDI_12_BUS │ │ │ │ ├── RAK13010_SDI_12_Address_Change │ │ │ │ │ └── RAK13010_SDI_12_Address_Change.ino │ │ │ │ ├── RAK13010_SDI_12_Basic_Data_Request │ │ │ │ │ └── RAK13010_SDI_12_Basic_Data_Request.ino │ │ │ │ ├── RAK13010_SDI_12_Check_All_Addresses │ │ │ │ │ └── RAK13010_SDI_12_Check_All_Addresses.ino │ │ │ │ ├── RAK13010_SDI_12_Concurrent_Logger │ │ │ │ │ └── RAK13010_SDI_12_Concurrent_Logger.ino │ │ │ │ ├── RAK13010_SDI_12_Interface │ │ │ │ │ └── RAK13010_SDI_12_Interface.ino │ │ │ │ └── RAK13010_SDI_12_Slave │ │ │ │ │ └── RAK13010_SDI_12_Slave.ino │ │ │ ├── RAK13600_PN530_NFC │ │ │ │ ├── FeliCa_card_detection │ │ │ │ │ └── FeliCa_card_detection.ino │ │ │ │ ├── FeliCa_card_read │ │ │ │ │ └── FeliCa_card_read.ino │ │ │ │ ├── iso14443a_uid │ │ │ │ │ └── iso14443a_uid.ino │ │ │ │ ├── iso14443b_uid │ │ │ │ │ └── iso14443b_uid.ino │ │ │ │ ├── mifareclassic_formatndef │ │ │ │ │ └── mifareclassic_formatndef.ino │ │ │ │ ├── mifareclassic_memdump │ │ │ │ │ └── mifareclassic_memdump.ino │ │ │ │ ├── mifareclassic_ndeftoclassic │ │ │ │ │ └── mifareclassic_ndeftoclassic.ino │ │ │ │ ├── mifareclassic_updatendef │ │ │ │ │ └── mifareclassic_updatendef.ino │ │ │ │ ├── ntag2xx_erase │ │ │ │ │ └── ntag2xx_erase.ino │ │ │ │ ├── ntag2xx_read │ │ │ │ │ └── ntag2xx_read.ino │ │ │ │ ├── ntag2xx_updatendef │ │ │ │ │ └── ntag2xx_updatendef.ino │ │ │ │ ├── readMifareClassic │ │ │ │ │ └── readMifareClassic.ino │ │ │ │ └── readandwriteMifare │ │ │ │ │ └── readandwriteMifare.ino │ │ │ ├── RAK14000-Epaper-Monochrome │ │ │ │ ├── RAK14000-Epaper-Monochrome.ino │ │ │ │ ├── README.md │ │ │ │ └── images.h │ │ │ ├── RAK14000-Epaper-TriColor │ │ │ │ ├── RAK14000-Epaper-TriColor.ino │ │ │ │ ├── README.md │ │ │ │ └── images.h │ │ │ ├── RAK14001_NCP5623_GradualDimming │ │ │ │ └── RAK14001_NCP5623_GradualDimming.ino │ │ │ ├── RAK14001_NCP5623_RGBCycle │ │ │ │ └── RAK14001_NCP5623_RGBCycle.ino │ │ │ ├── RAK14002_CAP1293_TouchKey │ │ │ │ ├── Example01_BasicReading │ │ │ │ │ └── Example01_BasicReading.ino │ │ │ │ ├── Example02_DetectAnyTouch │ │ │ │ │ └── Example02_DetectAnyTouch.ino │ │ │ │ ├── Example03_DetectSwipe │ │ │ │ │ └── Example03_DetectSwipe.ino │ │ │ │ ├── Example04_PowerButton │ │ │ │ │ └── Example04_PowerButton.ino │ │ │ │ ├── Example05_SetRepeatRateEnabled │ │ │ │ │ └── Example05_SetRepeatRateEnabled.ino │ │ │ │ ├── Example06_DisableInterrupt │ │ │ │ │ └── Example06_DisableInterrupt.ino │ │ │ │ ├── Example07_SetSensitivity │ │ │ │ │ └── Example07_SetSensitivity.ino │ │ │ │ ├── Example08_setMultiTouchDisabled │ │ │ │ │ └── Example08_setMultiTouchDisabled.ino │ │ │ │ ├── Example09_setReleaseInterruptEnabled │ │ │ │ │ └── Example09_setReleaseInterruptEnabled.ino │ │ │ │ └── Example10_setMTPEnabled │ │ │ │ │ └── Example10_setMTPEnabled.ino │ │ │ ├── RAK14003_LED_BAR_MCP32 │ │ │ │ └── RAK14003_LED_BAR_MCP32.ino │ │ │ ├── RAK14004_Atmega328pb_KeyPad │ │ │ │ ├── RAK14009_Atmega328pb_KeyPad │ │ │ │ │ └── RAK14009_Atmega328pb_KeyPad.ino │ │ │ │ ├── RAK14010_Atmega328pb_KeyPad │ │ │ │ │ └── RAK14010_Atmega328pb_KeyPad.ino │ │ │ │ └── RAK14011_Atmega328pb_KeyPad │ │ │ │ │ └── RAK14011_Atmega328pb_KeyPad.ino │ │ │ ├── RAK14006_Rotary_Encoder │ │ │ │ └── RAK14006_Rotary_Encoder.ino │ │ │ ├── RAK14007_ATTINY441_Joystick │ │ │ │ ├── RAK14007_ATTINY441_Joystick │ │ │ │ │ └── RAK14007_ATTINY441_Joystick.ino │ │ │ │ ├── RAK14007_ATTINY441_Joystick_SetI2C │ │ │ │ │ └── RAK14007_ATTINY441_Joystick_SetI2C.ino │ │ │ │ └── RAK14007_ATTINY441_SetThreshold │ │ │ │ │ └── RAK14007_ATTINY441_SetThreshold.ino │ │ │ ├── RAK14012_RGB_Matrix │ │ │ │ ├── RAK14012_RGB_Matrix_Disco │ │ │ │ │ └── RAK14012_RGB_Matrix_Disco.ino │ │ │ │ ├── RAK14012_RGB_Matrix_RandomColor │ │ │ │ │ └── RAK14012_RGB_Matrix_RandomColor.ino │ │ │ │ ├── RAK14012_RGB_Matrix_SevenColor │ │ │ │ │ └── RAK14012_RGB_Matrix_SevenColor.ino │ │ │ │ ├── RAK14012_RGB_Matrix_SingleCycle │ │ │ │ │ └── RAK14012_RGB_Matrix_SingleCycle.ino │ │ │ │ └── RAK14012_RGB_Matrix_Strand │ │ │ │ │ └── RAK14012_RGB_Matrix_Strand.ino │ │ │ ├── RAK15002_SD_Card │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── RAK15002_SD_Card.ino │ │ │ ├── RAK16000_DcCurrent_INA219 │ │ │ │ └── RAK16000_DcCurrent_INA219.ino │ │ │ ├── RAK16001_ADC_ADS7830 │ │ │ │ ├── RAK16001_Differential │ │ │ │ │ └── RAK16001_Differential.ino │ │ │ │ └── RAK16001_SingleEnded │ │ │ │ │ └── RAK16001_SingleEnded.ino │ │ │ ├── RAK16002_Coulomb │ │ │ │ ├── RAK16002_Coulomb_INT_LTC2941 │ │ │ │ │ └── RAK16002_Coulomb_INT_LTC2941.ino │ │ │ │ └── RAK16002_Coulomb_LTC2941 │ │ │ │ │ └── RAK16002_Coulomb_LTC2941.ino │ │ │ ├── RAK17000_Motor_Driver_DRV8833 │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── RAK17000_Motor_Driver_DRV8833.ino │ │ │ ├── RAK17000_Stepper_Driver_DRV8833 │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── RAK17000_Stepper_Driver_DRV8833.ino │ │ │ ├── RAK19006_WirelessCharger │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── RAK19006_WirelessCharger.ino │ │ │ ├── RAK1921_Jumping_Ball_SSD1306 │ │ │ │ ├── RAK1921_Jumping_Ball_SSD1306.ino │ │ │ │ └── README.md │ │ │ ├── RAK1921_Moving_Logo_SSD1306 │ │ │ │ ├── RAK1921_Moving_Logo_SSD1306.ino │ │ │ │ └── README.md │ │ │ ├── RAK1921_OLED_SSD1306 │ │ │ │ ├── RAK1921_OLED_SSD1306.ino │ │ │ │ └── README.md │ │ │ ├── RAK5801_4-20mA │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── RAK5801_4-20mA.ino │ │ │ ├── RAK5802_RS485 │ │ │ │ ├── Readme.md │ │ │ │ ├── Receiver │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ └── Receiver.ino │ │ │ │ └── Sender │ │ │ │ │ ├── .rak11200.test.skip │ │ │ │ │ ├── .rak11300.test.skip │ │ │ │ │ └── Sender.ino │ │ │ └── RAK5811_0-5V │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── RAK5811_0-5V.ino │ │ │ ├── Power │ │ │ └── RAK4630_Battery_Level_Detect │ │ │ │ ├── README.md │ │ │ │ └── Read_Battery_Level │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ ├── Read_Battery_Level.ino │ │ │ │ ├── ble.ino │ │ │ │ └── display.ino │ │ │ ├── Sensors │ │ │ ├── RAK12002_RTC_Alarm_RV-3028-C7 │ │ │ │ └── RAK12002_RTC_Alarm_RV-3028-C7.ino │ │ │ ├── RAK12002_RTC_DateTime_RV-3028-C7 │ │ │ │ └── RAK12002_RTC_DateTime_RV-3028-C7.ino │ │ │ ├── RAK12002_RTC_EEPROM_RV-3028-C7 │ │ │ │ └── RAK12002_RTC_EEPROM_RV-3028-C7.ino │ │ │ ├── RAK12003_FIR_MLX90632 │ │ │ │ └── RAK12003_FIR_MLX90632.ino │ │ │ ├── RAK12010_VEML7700_Light │ │ │ │ └── RAK12010_VEML7700_Light.ino │ │ │ ├── RAK12011_MEMS_Pressure_LPS33HW │ │ │ │ └── RAK12011_MEMS_Pressure_LPS33HW.ino │ │ │ ├── RAK12019_UVlight_LTR390 │ │ │ │ └── RAK12019_UVlight_LTR390.ino │ │ │ ├── RAK12021_RGBC_TCS37725 │ │ │ │ ├── RAK12021_RGBC_Auto_Gain_TCS37725 │ │ │ │ │ └── RAK12021_RGBC_Auto_Gain_TCS37725.ino │ │ │ │ ├── RAK12021_RGBC_Collection_TCS37725 │ │ │ │ │ └── RAK12021_RGBC_Collection_TCS37725.ino │ │ │ │ └── RAK12021_RGBC_Interrupt_TCS37725 │ │ │ │ │ └── RAK12021_RGBC_Interrupt_TCS37725.ino │ │ │ ├── RAK12025_Gyroscope │ │ │ │ ├── RAK12025_I3G4250D_Gyroscope │ │ │ │ │ └── RAK12025_I3G4250D_Gyroscope.ino │ │ │ │ ├── RAK12025_I3G4250D_Gyroscope_Interrupt │ │ │ │ │ └── RAK12025_I3G4250D_Gyroscope_Interrupt.ino │ │ │ │ └── RAK12025_I3G4250D_Gyroscope_Low_Power │ │ │ │ │ └── RAK12025_I3G4250D_Gyroscope_Low_Power.ino │ │ │ ├── RAK12027_Earthquake │ │ │ │ ├── RAK12027_Earthquake_ClearDate_D7S │ │ │ │ │ └── RAK12027_Earthquake_ClearDate_D7S.ino │ │ │ │ ├── RAK12027_Earthquake_Interrupt_D7S │ │ │ │ │ └── RAK12027_Earthquake_Interrupt_D7S.ino │ │ │ │ ├── RAK12027_Earthquake_RankedDate_D7S │ │ │ │ │ └── RAK12027_Earthquake_RankedDate_D7S.ino │ │ │ │ └── RAK12027_Earthquake_Seismograph_D7S │ │ │ │ │ └── RAK12027_Earthquake_Seismograph_D7S.ino │ │ │ ├── RAK12032_3_Axis_ADXL313 │ │ │ │ ├── RAK12032_3_Axis_Interrupt_ADXL313 │ │ │ │ │ └── RAK12032_3_Axis_Interrupt_ADXL313.ino │ │ │ │ ├── RAK12032_3_Axis_Read_ADXL313 │ │ │ │ │ └── RAK12032_3_Axis_Read_ADXL313.ino │ │ │ │ ├── RAK12032_3_Axis_SetRange_ADXL313 │ │ │ │ │ └── RAK12032_3_Axis_SetRange_ADXL313.ino │ │ │ │ └── RAK12032_3_Axis_Standby_ADXL313 │ │ │ │ │ └── RAK12032_3_Axis_Standby_ADXL313.ino │ │ │ ├── RAK12033_6_Axis_IIM42652 │ │ │ │ ├── RAK12033_6_Axis_BasicReadings_IIM_42652 │ │ │ │ │ └── RAK12033_6_Axis_BasicReadings_IIM_42652.ino │ │ │ │ ├── RAK12033_6_Axis_Calibration_IIM_42652 │ │ │ │ │ └── RAK12033_6_Axis_Calibration_IIM_42652.ino │ │ │ │ ├── RAK12033_6_Axis_Interrupt_IIM_42652 │ │ │ │ │ └── RAK12033_6_Axis_Interrupt_IIM_42652.ino │ │ │ │ └── RAK12033_6_Axis_SetRange_IIM_42652 │ │ │ │ │ └── RAK12033_6_Axis_SetRange_IIM_42652.ino │ │ │ ├── RAK12034_9_Axis_BMX160 │ │ │ │ ├── readAccelData │ │ │ │ │ └── readAccelData.ino │ │ │ │ ├── readAllData │ │ │ │ │ └── readAllData.ino │ │ │ │ ├── readGyroData │ │ │ │ │ └── readGyroData.ino │ │ │ │ ├── readMagnData │ │ │ │ │ └── readMagnData.ino │ │ │ │ └── setLowPower │ │ │ │ │ └── setLowPower.ino │ │ │ ├── RAK12037_CO2_SCD30 │ │ │ │ ├── RAK12037_AutoCalibrate_SCD30 │ │ │ │ │ └── RAK12037_AutoCalibrate_SCD30.ino │ │ │ │ ├── RAK12037_BasicReadings_SCD30 │ │ │ │ │ └── RAK12037_BasicReadings_SCD30.ino │ │ │ │ ├── RAK12037_GetSettings_SCD30 │ │ │ │ │ └── RAK12037_GetSettings_SCD30.ino │ │ │ │ └── RAK12037_SetOptions_SCD30 │ │ │ │ │ └── RAK12037_SetOptions_SCD30.ino │ │ │ ├── RAK12500_GPS_ZOE-M8Q │ │ │ │ ├── RAK12500_GPS_ZOE-M8Q_IIC │ │ │ │ │ └── RAK12500_GPS_ZOE-M8Q_IIC.ino │ │ │ │ └── RAK12500_GPS_ZOE-M8Q_UART │ │ │ │ │ └── RAK12500_GPS_ZOE-M8Q_UART.ino │ │ │ ├── RAK14008_Gesture_PAJ7620 │ │ │ │ ├── RAK14008_Gesture_INT_PAJ7620 │ │ │ │ │ └── RAK14008_Gesture_INT_PAJ7620.ino │ │ │ │ └── RAK14008_Gesture_Recognize_PAJ7620 │ │ │ │ │ └── RAK14008_Gesture_Recognize_PAJ7620.ino │ │ │ ├── RAK15000_EEPROM_AT24C02 │ │ │ │ └── RAK15000_EEPROM_AT24C02.ino │ │ │ ├── RAK15001_Flash_GD25Q16C │ │ │ │ └── RAK15001_Flash_GD25Q16C.ino │ │ │ ├── RAK18001_Buzzer │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── RAK18001_Buzzer.ino │ │ │ ├── RAK19002_Boost_TPS61046 │ │ │ │ └── RAK19002_Boost_TPS61046.ino │ │ │ ├── RAK1901_Temperature_Humidity_SHTC3 │ │ │ │ ├── RAK1901_Temperature_Humidity_SHTC3.ino │ │ │ │ └── README.md │ │ │ ├── RAK1902_Pressure_LPS22HB │ │ │ │ ├── RAK1902_Pressure_LPS22HB.ino │ │ │ │ └── README.md │ │ │ ├── RAK1903_Optical_OPT3001 │ │ │ │ ├── RAK1903_Optical_OPT3001.ino │ │ │ │ └── README.md │ │ │ ├── RAK1904_Accelerate_LIS3DH │ │ │ │ ├── RAK1904_Accelerate_LIS3DH.ino │ │ │ │ └── Readme.md │ │ │ ├── RAK1905_9_Axis_MPU9250 │ │ │ │ ├── MPU9250_FIFO_continuous │ │ │ │ │ └── MPU9250_FIFO_continuous.ino │ │ │ │ ├── MPU9250_FIFO_stop_when_full │ │ │ │ │ └── MPU9250_FIFO_stop_when_full.ino │ │ │ │ ├── MPU9250_acceleration_data │ │ │ │ │ └── MPU9250_acceleration_data.ino │ │ │ │ ├── MPU9250_all_data │ │ │ │ │ └── MPU9250_all_data.ino │ │ │ │ ├── MPU9250_angles_and_orientation │ │ │ │ │ └── MPU9250_angles_and_orientation.ino │ │ │ │ ├── MPU9250_blank_all_settings │ │ │ │ │ └── MPU9250_blank_all_settings.ino │ │ │ │ ├── MPU9250_calibration │ │ │ │ │ └── MPU9250_calibration.ino │ │ │ │ ├── MPU9250_data_ready_interrupt_and_cycle │ │ │ │ │ └── MPU9250_data_ready_interrupt_and_cycle.ino │ │ │ │ ├── MPU9250_gyroscope_data │ │ │ │ │ └── MPU9250_gyroscope_data.ino │ │ │ │ ├── MPU9250_magnetometer_data │ │ │ │ │ └── MPU9250_magnetometer_data.ino │ │ │ │ ├── MPU9250_pitch_and_roll │ │ │ │ │ └── MPU9250_pitch_and_roll.ino │ │ │ │ └── MPU9250_wake_on_motion_interrupt │ │ │ │ │ └── MPU9250_wake_on_motion_interrupt.ino │ │ │ ├── RAK1906_Environment_BME680 │ │ │ │ ├── RAK1906_Environment_BME680.ino │ │ │ │ └── README.md │ │ │ ├── RAK1910_GPS_UBLOX7 │ │ │ │ ├── RAK1910_GPS_UBLOX7.ino │ │ │ │ └── Readme.md │ │ │ ├── RAK1920_Grove_Color_TCS3472 │ │ │ │ ├── RAK1920_Grove_Color_TCS3472.ino │ │ │ │ └── README.md │ │ │ ├── RAK1920_Grove_PIR_AS312 │ │ │ │ ├── RAK1920_Grove_PIR_AS312.ino │ │ │ │ └── README.md │ │ │ ├── RAK1920_MikroBUS_Temperature_TMP102 │ │ │ │ ├── RAK1920_MikroBUS_Temperature_TMP102.ino │ │ │ │ └── README.md │ │ │ └── RAK1920_QWIIC_AirQuality_SGP30 │ │ │ │ ├── RAK1920_QWIIC_AirQuality_SGP30.ino │ │ │ │ └── README.md │ │ │ └── Solutions │ │ │ ├── BLE_Gateway │ │ │ ├── README.md │ │ │ ├── ble_environment_node │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── ble_environment_node.ino │ │ │ └── ble_gateway │ │ │ │ ├── .rak11200.test.skip │ │ │ │ ├── .rak11300.test.skip │ │ │ │ └── ble_gateway.ino │ │ │ ├── Environment_Monitoring │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── Environment_Monitoring.ino │ │ │ └── README.md │ │ │ ├── GPS_Tracker │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── GPS_Tracker.ino │ │ │ └── README.md │ │ │ ├── Hydraulic_Pressure_Monitoring │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── Hydraulic_Pressure_Monitoring.ino │ │ │ └── README.md │ │ │ ├── Intelligent_Agriculture │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── Intelligent_Agriculture.ino │ │ │ └── README.md │ │ │ ├── LoRaWAN_Health │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── BloodOxygen_MAX30105.ino │ │ │ └── LoRaWAN_Health.ino │ │ │ ├── PAR_Monitoring │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── PAR_Monitoring.ino │ │ │ └── README.md │ │ │ ├── RAK12010_LoRaWAN │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ └── RAK12010_LoRaWAN.ino │ │ │ ├── RAK12019_UVlight_LTR390_LoRaWan │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ └── RAK12019_UVlight_LTR390_LoRaWan.ino │ │ │ ├── RAK12035_RAK4631_LPWAN │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── RAK12035_RAK4631_LPWAN.ino │ │ │ ├── README.md │ │ │ ├── acc.cpp │ │ │ ├── app.h │ │ │ ├── soil.cpp │ │ │ └── user_at.cpp │ │ │ ├── Soil_Conductivity_Monitoring │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── README.md │ │ │ └── Soil_Conductivity_Monitoring.ino │ │ │ ├── Soil_pH_Monitoring │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── README.md │ │ │ └── Soil_pH_Monitoring.ino │ │ │ ├── Water_Level_Monitoring │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── README.md │ │ │ └── Water_Level_Monitoring.ino │ │ │ ├── Weather_Monitoring │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── README.md │ │ │ └── Weather_Monitoring.ino │ │ │ └── Wind_Speed_Monitoring │ │ │ ├── .rak11200.test.skip │ │ │ ├── .rak11300.test.skip │ │ │ ├── README.md │ │ │ └── Wind_Speed_Monitoring.ino │ ├── library.properties │ └── src │ │ ├── lib.cpp │ │ └── lib.h ├── RotaryEncoder │ ├── LICENSE │ ├── RotaryEncoder.cpp │ ├── RotaryEncoder.h │ ├── SwRotaryEncoder.cpp │ ├── SwRotaryEncoder.h │ ├── examples │ │ ├── HwEncoderCallback │ │ │ └── HwEncoderCallback.ino │ │ ├── HwEncoderPoll │ │ │ └── HwEncoderPoll.ino │ │ ├── SwEncoderCallback │ │ │ └── SwEncoderCallback.ino │ │ └── SwEncoderPoll │ │ │ └── SwEncoderPoll.ino │ ├── keywords.txt │ └── library.properties ├── SPI │ ├── SPI.cpp │ ├── SPI.h │ ├── SPI_nrf52832.cpp │ ├── examples │ │ ├── BarometricPressureSensor │ │ │ └── BarometricPressureSensor.ino │ │ └── DigitalPotControl │ │ │ └── DigitalPotControl.ino │ ├── keywords.txt │ └── library.properties ├── Servo │ ├── README.adoc │ ├── examples │ │ ├── Knob │ │ │ └── Knob.ino │ │ └── Sweep │ │ │ └── Sweep.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Servo.h │ │ └── nrf52 │ │ ├── Servo.cpp │ │ └── ServoTimers.h ├── SoftwareSerial │ ├── SoftwareSerial.cpp │ ├── SoftwareSerial.h │ ├── examples │ │ ├── SoftwareSerialExample │ │ │ └── SoftwareSerialExample.ino │ │ └── TwoPortReceive │ │ │ └── TwoPortReceive.ino │ ├── keywords.txt │ └── library.properties └── Wire │ ├── Wire.h │ ├── Wire_nRF52.cpp │ ├── examples │ ├── SFRRanger_reader │ │ └── SFRRanger_reader.ino │ ├── digital_potentiometer │ │ └── digital_potentiometer.ino │ ├── main_reader │ │ └── main_reader.ino │ ├── main_scan │ │ └── main_scan.ino │ ├── main_writer │ │ └── main_writer.ino │ ├── secondary_receiver │ │ └── secondary_receiver.ino │ └── secondary_sender │ │ └── secondary_sender.ino │ ├── keywords.txt │ └── library.properties ├── package.json ├── package_raknrf_index.json ├── platform.txt ├── programmers.txt ├── tools ├── adafruit-nrfutil │ ├── macos │ │ └── adafruit-nrfutil │ └── win32 │ │ └── adafruit-nrfutil.exe ├── build_all.py ├── makeboards.py ├── midi_tests │ ├── README.md │ ├── package.json │ ├── rx.js │ ├── rx_arduino │ │ └── rx_arduino.ino │ ├── tx.js │ └── tx_arduino │ │ └── tx_arduino.ino ├── pynrfbintool │ ├── nrfbintool.c │ ├── pynrfbintool.py │ └── readme.md ├── uf2conv │ ├── LICENSE.txt │ ├── README.md │ └── uf2conv.py └── update_bootloader.py └── variants ├── WisCore_RAK4600_Board ├── variant.cpp └── variant.h └── WisCore_RAK4631_Board ├── variant.cpp └── variant.h /.github/workflows/bsp_test_examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/.github/workflows/bsp_test_examples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/README.md -------------------------------------------------------------------------------- /assets/Add-BSP-URL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/assets/Add-BSP-URL.png -------------------------------------------------------------------------------- /assets/Install-BSP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/assets/Install-BSP.png -------------------------------------------------------------------------------- /assets/List-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/assets/List-examples.png -------------------------------------------------------------------------------- /assets/RAK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/assets/RAK.png -------------------------------------------------------------------------------- /assets/Select-Board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/assets/Select-Board.png -------------------------------------------------------------------------------- /assets/WisBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/assets/WisBlock.png -------------------------------------------------------------------------------- /assets/rakstar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/assets/rakstar.jpg -------------------------------------------------------------------------------- /boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/boards.txt -------------------------------------------------------------------------------- /bootloader/pca10056/pca10056_bootloader-0.6.2_s140_6.1.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/bootloader/pca10056/pca10056_bootloader-0.6.2_s140_6.1.1.hex -------------------------------------------------------------------------------- /bootloader/pca10056/pca10056_bootloader-0.6.2_s140_6.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/bootloader/pca10056/pca10056_bootloader-0.6.2_s140_6.1.1.zip -------------------------------------------------------------------------------- /bootloader/pca10056/update-pca10056_bootloader-0.6.2_nosd.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/bootloader/pca10056/update-pca10056_bootloader-0.6.2_nosd.uf2 -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/changelog.md -------------------------------------------------------------------------------- /cores/nRF5/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Arduino.h -------------------------------------------------------------------------------- /cores/nRF5/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Client.h -------------------------------------------------------------------------------- /cores/nRF5/HardwarePWM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/HardwarePWM.cpp -------------------------------------------------------------------------------- /cores/nRF5/HardwarePWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/HardwarePWM.h -------------------------------------------------------------------------------- /cores/nRF5/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/HardwareSerial.h -------------------------------------------------------------------------------- /cores/nRF5/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/IPAddress.cpp -------------------------------------------------------------------------------- /cores/nRF5/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/IPAddress.h -------------------------------------------------------------------------------- /cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Print.h -------------------------------------------------------------------------------- /cores/nRF5/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Printable.h -------------------------------------------------------------------------------- /cores/nRF5/RingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/RingBuffer.cpp -------------------------------------------------------------------------------- /cores/nRF5/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/RingBuffer.h -------------------------------------------------------------------------------- /cores/nRF5/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Server.h -------------------------------------------------------------------------------- /cores/nRF5/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Stream.cpp -------------------------------------------------------------------------------- /cores/nRF5/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Stream.h -------------------------------------------------------------------------------- /cores/nRF5/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Tone.cpp -------------------------------------------------------------------------------- /cores/nRF5/Tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Tone.h -------------------------------------------------------------------------------- /cores/nRF5/Uart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Uart.cpp -------------------------------------------------------------------------------- /cores/nRF5/Uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Uart.h -------------------------------------------------------------------------------- /cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /cores/nRF5/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/WCharacter.h -------------------------------------------------------------------------------- /cores/nRF5/WInterrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/WInterrupts.c -------------------------------------------------------------------------------- /cores/nRF5/WInterrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/WInterrupts.h -------------------------------------------------------------------------------- /cores/nRF5/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/WMath.cpp -------------------------------------------------------------------------------- /cores/nRF5/WMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/WMath.h -------------------------------------------------------------------------------- /cores/nRF5/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/WString.cpp -------------------------------------------------------------------------------- /cores/nRF5/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/WString.h -------------------------------------------------------------------------------- /cores/nRF5/WVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/WVariant.h -------------------------------------------------------------------------------- /cores/nRF5/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/abi.cpp -------------------------------------------------------------------------------- /cores/nRF5/avr/dtostrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/avr/dtostrf.c -------------------------------------------------------------------------------- /cores/nRF5/avr/dtostrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/avr/dtostrf.h -------------------------------------------------------------------------------- /cores/nRF5/avr/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/avr/interrupt.h -------------------------------------------------------------------------------- /cores/nRF5/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/avr/pgmspace.h -------------------------------------------------------------------------------- /cores/nRF5/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/binary.h -------------------------------------------------------------------------------- /cores/nRF5/common_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/common_func.h -------------------------------------------------------------------------------- /cores/nRF5/common_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/common_inc.h -------------------------------------------------------------------------------- /cores/nRF5/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/delay.c -------------------------------------------------------------------------------- /cores/nRF5/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/delay.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/License/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/License/license.txt -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/croutine.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/event_groups.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/FreeRTOS.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/StackMacros.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/croutine.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/deprecated_definitions.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/event_groups.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/list.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/message_buffer.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/mpu_prototypes.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/mpu_wrappers.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/portable.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/projdefs.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/queue.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/semphr.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/stack_macros.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/stdint.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/stdint.readme -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/stream_buffer.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/task.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/include/timers.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/list.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/portable/MemMang/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/portable/MemMang/heap_3.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/portable/readme.txt -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/queue.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/readme.txt -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/stream_buffer.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/tasks.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/Source/timers.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/config/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/config/FreeRTOSConfig.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/portable/CMSIS/nrf52/port_cmsis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/portable/CMSIS/nrf52/port_cmsis.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/portable/CMSIS/nrf52/port_cmsis_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/portable/CMSIS/nrf52/port_cmsis_systick.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/portable/CMSIS/nrf52/portmacro_cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/portable/CMSIS/nrf52/portmacro_cmsis.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/portable/GCC/nrf52/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/portable/GCC/nrf52/port.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/portable/GCC/nrf52/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/portable/GCC/nrf52/portmacro.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/freertos/readme.txt -------------------------------------------------------------------------------- /cores/nRF5/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/hooks.c -------------------------------------------------------------------------------- /cores/nRF5/itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/itoa.c -------------------------------------------------------------------------------- /cores/nRF5/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/itoa.h -------------------------------------------------------------------------------- /cores/nRF5/linker/gcc_startup_nrf52.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/linker/gcc_startup_nrf52.S -------------------------------------------------------------------------------- /cores/nRF5/linker/gcc_startup_nrf52840.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/linker/gcc_startup_nrf52840.S -------------------------------------------------------------------------------- /cores/nRF5/linker/nrf52832_s132_v6.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/linker/nrf52832_s132_v6.ld -------------------------------------------------------------------------------- /cores/nRF5/linker/nrf52840_s140_v6.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/linker/nrf52840_s140_v6.ld -------------------------------------------------------------------------------- /cores/nRF5/linker/nrf52_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/linker/nrf52_common.ld -------------------------------------------------------------------------------- /cores/nRF5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/main.cpp -------------------------------------------------------------------------------- /cores/nRF5/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/new.cpp -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/CHANGELOG.md -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/LICENSE -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/README.md -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrf_bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrf_bitmask.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_adc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_clock.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_comp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_dppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_dppi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_egu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_egu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_gpiote.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_i2s.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_ipc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_lpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_lpcomp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_nfct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_nfct.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_nvmc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_pdm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_power.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_power_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_power_clock.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_power_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_power_compat.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_ppi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_pwm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_qdec.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_qspi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_rng.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_rtc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_saadc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_spi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_spim.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_spis.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_systick.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_temp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_timer.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_twi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_twi_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_twi_twim.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_twim.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_twis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_twis.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_uart.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_uarte.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_usbd.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_usbreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_usbreg.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_wdt.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/nrfx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/nrfx_common.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/nrfx_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/nrfx_errors.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_gpiote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_gpiote.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_i2s.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_power.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_pwm.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_qspi.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_spim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_spim.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_timer.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_usbd_errata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_usbd_errata.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/prs/nrfx_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/prs/nrfx_prs.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_aar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_aar.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_acl.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_adc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_bprot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_bprot.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_cache.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_ccm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_clock.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_comp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_dcnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_dcnf.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_dppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_dppi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_ecb.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_egu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_egu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_ficr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_ficr.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_fpu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_gpio.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_gpiote.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_i2s.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_ipc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_kmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_kmu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_lpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_lpcomp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_mpu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_mutex.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_mwu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_mwu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_nfct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_nfct.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_nvmc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_oscillators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_oscillators.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_pdm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_power.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_ppi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_pwm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_qdec.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_qspi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_radio.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_regulators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_regulators.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_reset.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_rng.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_rtc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_saadc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_spi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_spim.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_spis.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_spu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_systick.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_temp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_timer.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_twi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_twim.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_twis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_twis.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_uart.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_uarte.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_usbd.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_usbreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_usbreg.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_vmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_vmc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_vreqctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_vreqctrl.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_wdt.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/helpers/nrfx_gppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/helpers/nrfx_gppi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/compiler_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/compiler_abstraction.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51422_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51422_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51801_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51801_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51802_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51802_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51822_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51822_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51824_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51824_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_deprecated.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_erratas.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52810.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52840.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52805.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52805_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52805_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52805_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52805_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810_name_change.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810_to_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810_to_nrf52811.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52811.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52811_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52811_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52811_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52811_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52832_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52832_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52833.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52833_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52833_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52833_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52833_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52840.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52840_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52840_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52840_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52840_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_erratas.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_name_change.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52810.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52833.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52840.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf53_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf53_erratas.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf91_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf91_erratas.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf_erratas.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52840.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52840.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/nrfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/nrfx.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_coredep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_coredep.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf51.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52810.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52811.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52832.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52832.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52833.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52840.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx_config.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx_glue.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/nrfx_log.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/s132_nrf52_6.1.1_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/softdevice/s132_nrf52_6.1.1_API/include/ble.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble.h -------------------------------------------------------------------------------- /cores/nRF5/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/pins_arduino.h -------------------------------------------------------------------------------- /cores/nRF5/pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/pulse.c -------------------------------------------------------------------------------- /cores/nRF5/pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/pulse.h -------------------------------------------------------------------------------- /cores/nRF5/pulse_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/pulse_asm.S -------------------------------------------------------------------------------- /cores/nRF5/rtos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/rtos.cpp -------------------------------------------------------------------------------- /cores/nRF5/rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/rtos.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/Config/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/Config/Global.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/Config/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/Config/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/Config/SEGGER_SYSVIEW_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/Config/SEGGER_SYSVIEW_Conf.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/Config/SEGGER_SYSVIEW_Config_FreeRTOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/Config/SEGGER_SYSVIEW_Config_FreeRTOS.c -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_RTT.c -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_RTT.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_RTT_ASM_ARMv7M.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_RTT_ASM_ARMv7M.S -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW.c -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW_ConfDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW_ConfDefaults.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW_Int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW_Int.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER_SYSVIEW_FreeRTOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER_SYSVIEW_FreeRTOS.c -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER_SYSVIEW_FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/sysview/SEGGER_SYSVIEW_FreeRTOS.h -------------------------------------------------------------------------------- /cores/nRF5/utility/AdaCallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/AdaCallback.c -------------------------------------------------------------------------------- /cores/nRF5/utility/AdaCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/AdaCallback.h -------------------------------------------------------------------------------- /cores/nRF5/utility/SoftwareTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/SoftwareTimer.cpp -------------------------------------------------------------------------------- /cores/nRF5/utility/SoftwareTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/SoftwareTimer.h -------------------------------------------------------------------------------- /cores/nRF5/utility/TimeoutTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/TimeoutTimer.h -------------------------------------------------------------------------------- /cores/nRF5/utility/adafruit_fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/adafruit_fifo.cpp -------------------------------------------------------------------------------- /cores/nRF5/utility/adafruit_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/adafruit_fifo.h -------------------------------------------------------------------------------- /cores/nRF5/utility/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/debug.cpp -------------------------------------------------------------------------------- /cores/nRF5/utility/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/debug.h -------------------------------------------------------------------------------- /cores/nRF5/utility/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/utilities.c -------------------------------------------------------------------------------- /cores/nRF5/utility/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/utility/utilities.h -------------------------------------------------------------------------------- /cores/nRF5/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/verify.h -------------------------------------------------------------------------------- /cores/nRF5/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring.c -------------------------------------------------------------------------------- /cores/nRF5/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring.h -------------------------------------------------------------------------------- /cores/nRF5/wiring_analog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring_analog.cpp -------------------------------------------------------------------------------- /cores/nRF5/wiring_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring_analog.h -------------------------------------------------------------------------------- /cores/nRF5/wiring_analog_nRF52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring_analog_nRF52.c -------------------------------------------------------------------------------- /cores/nRF5/wiring_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring_constants.h -------------------------------------------------------------------------------- /cores/nRF5/wiring_digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring_digital.c -------------------------------------------------------------------------------- /cores/nRF5/wiring_digital.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring_digital.h -------------------------------------------------------------------------------- /cores/nRF5/wiring_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring_private.c -------------------------------------------------------------------------------- /cores/nRF5/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring_private.h -------------------------------------------------------------------------------- /cores/nRF5/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring_shift.c -------------------------------------------------------------------------------- /cores/nRF5/wiring_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/cores/nRF5/wiring_shift.h -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/keywords.txt -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/library.properties -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/Adafruit_LittleFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/src/Adafruit_LittleFS.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/Adafruit_LittleFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/src/Adafruit_LittleFS.h -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/Adafruit_LittleFS_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/src/Adafruit_LittleFS_File.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/Adafruit_LittleFS_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/src/Adafruit_LittleFS_File.h -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/LICENSE.md -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/README.md -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/lfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/lfs.c -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/lfs.h -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/lfs_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/lfs_util.c -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/lfs_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/lfs_util.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/.gitignore: -------------------------------------------------------------------------------- 1 | /examples/**/build/ 2 | /.development 3 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/LICENSE -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/README.md -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/changelog.md -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/CDC/cdc_multi/.funhouse.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/CDC/cdc_multi/.magtag.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/CDC/cdc_multi/.metroesp32s2.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/CDC/no_serial/.funhouse.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/CDC/no_serial/.magtag.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/CDC/no_serial/.metroesp32s2.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/Composite/mouse_external_flash/.feather_rp2040_tinyusb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MIDI/midi_pizza_box_dj/.cpb.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MIDI/midi_pizza_box_dj/.cpx_ada.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MassStorage/msc_external_flash/.feather_rp2040_tinyusb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MassStorage/msc_external_flash_sdcard/.feather_rp2040_tinyusb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MassStorage/msc_sd/.feather_rp2040_tinyusb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MassStorage/msc_sd/.funhouse.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MassStorage/msc_sd/.magtag.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MassStorage/msc_sd/.metroesp32s2.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MassStorage/msc_sdfat/.feather_rp2040_tinyusb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MassStorage/msc_sdfat/.funhouse.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MassStorage/msc_sdfat/.magtag.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/examples/MassStorage/msc_sdfat/.metroesp32s2.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/library.properties -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/Adafruit_TinyUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/Adafruit_TinyUSB.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/arduino/Adafruit_USBD_CDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/arduino/Adafruit_USBD_CDC.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/audio/audio.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/audio/audio_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/audio/audio_device.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/audio/audio_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/audio/audio_device.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/bth/bth_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/bth/bth_device.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/bth/bth_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/bth/bth_device.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/cdc/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/cdc/cdc.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/cdc/cdc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/cdc/cdc_device.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/cdc/cdc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/cdc/cdc_device.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/dfu/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/dfu/dfu.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/dfu/dfu_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/dfu/dfu_device.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/dfu/dfu_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/dfu/dfu_device.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/dfu/dfu_rt_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/dfu/dfu_rt_device.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/dfu/dfu_rt_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/dfu/dfu_rt_device.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/hid/hid.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/hid/hid_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/hid/hid_device.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/hid/hid_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/hid/hid_device.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/midi/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/midi/midi.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/midi/midi_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/midi/midi_device.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/midi/midi_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/midi/midi_device.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/msc/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/msc/msc.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/msc/msc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/msc/msc_device.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/msc/msc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/msc/msc_device.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/net/ncm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/net/ncm.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/net/ncm_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/net/ncm_device.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/net/net_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/net/net_device.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/class/usbtmc/usbtmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/class/usbtmc/usbtmc.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_common.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_compiler.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_error.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_fifo.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_fifo.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_timeout.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_types.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/common/tusb_verify.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/device/dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/device/dcd.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/device/dcd_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/device/dcd_attr.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/device/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/device/usbd.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/device/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/device/usbd.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/device/usbd_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/device/usbd_control.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/device/usbd_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/device/usbd_pvt.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/osal/osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/osal/osal.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/osal/osal_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/osal/osal_freertos.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/osal/osal_mynewt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/osal/osal_mynewt.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/osal/osal_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/osal/osal_none.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/osal/osal_pico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/osal/osal_pico.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/osal/osal_rtthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/osal/osal_rtthread.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/tusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/tusb.c -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/tusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/tusb.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/tusb_config.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/src/tusb_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/src/tusb_option.h -------------------------------------------------------------------------------- /libraries/Adafruit_TinyUSB_Arduino/tools/update_tinyusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_TinyUSB_Arduino/tools/update_tinyusb.py -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/LICENSE -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/README.md -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/examples/hash/.feather52832.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/examples/hash/hash.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/examples/hash/hash.ino -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/examples/hash/input_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/examples/hash/input_data.bin -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/examples/random/.feather52832.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/examples/random/random.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/examples/random/random.ino -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/library.properties -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/Adafruit_nRFCrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/Adafruit_nRFCrypto.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/Adafruit_nRFCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/Adafruit_nRFCrypto.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/cortex-m4/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/cortex-m4/license.txt -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC_PrivateKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC_PrivateKey.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC_PrivateKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC_PrivateKey.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC_PublicKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC_PublicKey.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC_PublicKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/ecc/nRFCrypto_ECC_PublicKey.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nRFCrypto_Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nRFCrypto_Hash.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nRFCrypto_Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nRFCrypto_Hash.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nRFCrypto_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nRFCrypto_Random.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nRFCrypto_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nRFCrypto_Random.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_aesccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_aesccm.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_chacha.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_common.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_dh.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_dh_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_dh_error.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_dh_kg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_dh_kg.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_ecpki_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_ecpki_dh.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_ecpki_kg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_ecpki_kg.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_error.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_hash.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_hkdf.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_hmac.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_kdf.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_poly.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_rnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_rnd.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_rsa_kg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_rsa_kg.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_rsa_prim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_rsa_prim.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/crys_srp.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/sns_silib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/sns_silib.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_aes.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_aes_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_aes_defs.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_aes_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_aes_error.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_bitops.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_abort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_abort.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_dma.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_error.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_file.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_fips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_fips.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_init.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_list.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_log.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_mem.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_pal_sem.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/include/ssi_regs.h -------------------------------------------------------------------------------- /libraries/Adafruit_nRFCrypto/src/nrf_cc310/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Adafruit_nRFCrypto/src/nrf_cc310/license.txt -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/library.properties -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/BLEAdafruitService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/BLEAdafruitService.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitAccel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitAccel.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitAccel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitAccel.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitBaro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitBaro.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitBaro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitBaro.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitButton.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitButton.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitColor.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitColor.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitGesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitGesture.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitGesture.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitGyro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitGyro.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitGyro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitGyro.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitHumid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitHumid.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitHumid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitHumid.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitMagnetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitMagnetic.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitProximity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitProximity.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitSensor.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitSensor.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitSound.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitSound.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitTone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitTone.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitTone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitTone.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/README.md -------------------------------------------------------------------------------- /libraries/BLEHomekit/keywords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLEHomekit/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/library.properties -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/BLEHomekit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/BLEHomekit.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/BLEHomekit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/BLEHomekit.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPCharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/HAPCharacteristic.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPCharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/HAPCharacteristic.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPProcedure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/HAPProcedure.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPProcedure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/HAPProcedure.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/HAPService.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/HAPService.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPUuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/HAPUuid.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/crypto.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/crypto.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/random.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/random.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/bignum.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/bignum.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/bn_mul.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/check_config.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/config.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/memory_buffer_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/memory_buffer_alloc.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/memory_buffer_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/memory_buffer_alloc.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/platform.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/platform.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/srp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/srp.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/srp.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/tweetnacl-modified/tweetnacl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/tweetnacl-modified/tweetnacl.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/tweetnacl-modified/tweetnacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/crypto/tweetnacl-modified/tweetnacl.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPAccessoryInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/service/HAPAccessoryInfo.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPAccessoryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/service/HAPAccessoryInfo.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPLightBulb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/service/HAPLightBulb.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPLightBulb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/service/HAPLightBulb.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPPairing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/service/HAPPairing.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPPairing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/service/HAPPairing.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/service/HAPProtocol.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/BLEHomekit/src/service/HAPProtocol.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/LICENSE -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/README.md -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/Fading/Fading.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/Fading/Fading.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/Serial1_test/.feather52832.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/adc/adc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/adc/adc.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/adc_vbat/.cluenrf52840.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/adc_vbat/.itsybitsy52840.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/adc_vbat/adc_vbat.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/adc_vbat/adc_vbat.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/blinky/blinky.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/blinky/blinky.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/dfu_ota/dfu_ota.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/dfu_ota/dfu_ota.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/fwinfo/fwinfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/fwinfo/fwinfo.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/hwinfo/hwinfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/hwinfo/hwinfo.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/hwpwm/hwpwm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/hwpwm/hwpwm.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/meminfo/meminfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/meminfo/meminfo.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/ancs/ancs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Peripheral/ancs/ancs.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/ancs_arcada/.cluenrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/ancs_arcada/.cplaynrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/arduino_science_journal/.cluenrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/arduino_science_journal/.cplaynrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/arduino_science_journal/.feather52840sense.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/beacon/beacon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Peripheral/beacon/beacon.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/blemidi/blemidi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Peripheral/blemidi/blemidi.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/bleuart/bleuart.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/examples/Peripheral/bleuart/bleuart.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/bluefruit_playground/.cluenrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/bluefruit_playground/.cplaynrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/bluefruit_playground/.feather52840sense.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/pairing_passkey_arcada/.cluenrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/pairing_passkey_arcada/.cplaynrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/tf4micro-motion-kit/.cluenrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/tf4micro-motion-kit/.feather52840sense.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Projects/homekit/homekit_lightbulb/.all.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/keywords.txt -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/library.properties -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEAdvertising.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEAdvertising.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEAdvertising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEAdvertising.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLECentral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLECentral.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLECentral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLECentral.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLECharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLECharacteristic.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLECharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLECharacteristic.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEClientCharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEClientCharacteristic.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEClientCharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEClientCharacteristic.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEClientService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEClientService.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEClientService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEClientService.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEConnection.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEConnection.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEDiscovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEDiscovery.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEDiscovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEDiscovery.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEGatt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEGatt.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEGatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEGatt.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEPeriph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEPeriph.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEPeriph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEPeriph.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEScanner.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEScanner.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLESecurity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLESecurity.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLESecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLESecurity.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEService.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEService.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEUuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEUuid.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEUuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/BLEUuid.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/bluefruit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/bluefruit.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/bluefruit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/bluefruit.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/bluefruit_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/bluefruit_common.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEAncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEAncs.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEAncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEAncs.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientBas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientBas.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientBas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientBas.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientCts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientCts.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientCts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientCts.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientDis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientDis.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientDis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientDis.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientUart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientUart.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientUart.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEBas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEBas.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEBas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEBas.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEBeacon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEBeacon.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEBeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEBeacon.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEDfu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEDfu.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEDfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEDfu.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEDis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEDis.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEDis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEDis.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEHidAdafruit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEHidAdafruit.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEHidAdafruit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEHidAdafruit.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEHidGamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEHidGamepad.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEHidGamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEHidGamepad.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEHidGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEHidGeneric.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEHidGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEHidGeneric.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEMidi.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEMidi.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEUart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEUart.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEUart.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/EddyStone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/EddyStone.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/EddyStone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/services/EddyStone.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/utility/AdaMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/utility/AdaMsg.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/utility/AdaMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/utility/AdaMsg.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/utility/bonding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/utility/bonding.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/utility/bonding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/utility/bonding.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/utility/bootloader_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Bluefruit52Lib/src/utility/bootloader_util.c -------------------------------------------------------------------------------- /libraries/I2S/examples/LookBack/LookBack.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/I2S/examples/LookBack/LookBack.ino -------------------------------------------------------------------------------- /libraries/I2S/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/I2S/keywords.txt -------------------------------------------------------------------------------- /libraries/I2S/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/I2S/library.properties -------------------------------------------------------------------------------- /libraries/I2S/src/I2S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/I2S/src/I2S.cpp -------------------------------------------------------------------------------- /libraries/I2S/src/I2S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/I2S/src/I2S.h -------------------------------------------------------------------------------- /libraries/I2S/src/I2SDoubleBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/I2S/src/I2SDoubleBuffer.cpp -------------------------------------------------------------------------------- /libraries/I2S/src/I2SDoubleBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/I2S/src/I2SDoubleBuffer.h -------------------------------------------------------------------------------- /libraries/InternalFileSytem/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/InternalFileSytem/library.properties -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/InternalFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/InternalFileSytem/src/InternalFileSystem.cpp -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/InternalFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/InternalFileSytem/src/InternalFileSystem.h -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/flash/flash_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/InternalFileSytem/src/flash/flash_cache.c -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/flash/flash_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/InternalFileSytem/src/flash/flash_cache.h -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/flash/flash_nrf5x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/InternalFileSytem/src/flash/flash_nrf5x.c -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/flash/flash_nrf5x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/InternalFileSytem/src/flash/flash_nrf5x.h -------------------------------------------------------------------------------- /libraries/PDM/examples/record_mono/record_mono.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/PDM/examples/record_mono/record_mono.ino -------------------------------------------------------------------------------- /libraries/PDM/examples/record_stereo/record_stereo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/PDM/examples/record_stereo/record_stereo.ino -------------------------------------------------------------------------------- /libraries/PDM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/PDM/keywords.txt -------------------------------------------------------------------------------- /libraries/PDM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/PDM/library.properties -------------------------------------------------------------------------------- /libraries/PDM/src/PDM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/PDM/src/PDM.cpp -------------------------------------------------------------------------------- /libraries/PDM/src/PDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/PDM/src/PDM.h -------------------------------------------------------------------------------- /libraries/PDM/src/utility/PDMDoubleBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/PDM/src/utility/PDMDoubleBuffer.cpp -------------------------------------------------------------------------------- /libraries/PDM/src/utility/PDMDoubleBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/PDM/src/utility/PDMDoubleBuffer.h -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/BLE_Health/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/BLE_Health/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/RAK12010_Ble/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/RAK12010_Ble/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/RAK12019_UVlight_LTR390_Ble/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/RAK12019_UVlight_LTR390_Ble/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/ble_ota_dfu/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/ble_ota_dfu/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/ble_proximity_sensing/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/ble_proximity_sensing/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/ble_uart/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/BLE/ble_uart/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/LoRa/LoRaP2P/LoRaP2P_RX/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/LoRa/LoRaP2P/LoRaP2P_RX/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/LoRa/LoRaP2P/LoRaP2P_TX/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/LoRa/LoRaP2P/LoRaP2P_TX/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/LoRa/LoRaWAN/LoRaWAN_OTAA_ABP/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/LoRa/LoRaWAN/LoRaWAN_OTAA_ABP/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/LoRa/LoRaWAN/RAK4631-DeepSleep-LoRaWan/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/LoRa/LoRaWAN/RAK4631-DeepSleep-LoRaWan/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/WiFi/AT_Command_Test/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/WiFi/AT_Command_Test/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/WiFi/connect_ap/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Communications/WiFi/connect_ap/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK14000-Epaper-Monochrome/README.md: -------------------------------------------------------------------------------- 1 | DEPG0213BNS800F42HP 2 | 3 | Mono-Color: BLACK WHITE 4 | 5 | 2.13 inch 6 | 7 | 212*104 -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK14000-Epaper-TriColor/README.md: -------------------------------------------------------------------------------- 1 | DEPG0213RWS800F41HP 2 | 3 | TRI-Color: RED BLACK WHITE 4 | 5 | 2.13 inch 6 | 7 | 250*122 -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK15002_SD_Card/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK15002_SD_Card/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK17000_Motor_Driver_DRV8833/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK17000_Motor_Driver_DRV8833/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK17000_Stepper_Driver_DRV8833/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK17000_Stepper_Driver_DRV8833/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK19006_WirelessCharger/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK19006_WirelessCharger/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK5801_4-20mA/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK5801_4-20mA/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK5802_RS485/Receiver/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK5802_RS485/Receiver/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK5802_RS485/Sender/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK5802_RS485/Sender/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK5811_0-5V/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/IO/RAK5811_0-5V/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Power/RAK4630_Battery_Level_Detect/Read_Battery_Level/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Power/RAK4630_Battery_Level_Detect/Read_Battery_Level/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Sensors/RAK18001_Buzzer/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Sensors/RAK18001_Buzzer/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/BLE_Gateway/ble_environment_node/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/BLE_Gateway/ble_environment_node/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/BLE_Gateway/ble_gateway/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/BLE_Gateway/ble_gateway/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Environment_Monitoring/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Environment_Monitoring/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/GPS_Tracker/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/GPS_Tracker/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Hydraulic_Pressure_Monitoring/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Hydraulic_Pressure_Monitoring/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Intelligent_Agriculture/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Intelligent_Agriculture/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/LoRaWAN_Health/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/LoRaWAN_Health/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/PAR_Monitoring/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/PAR_Monitoring/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/RAK12010_LoRaWAN/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/RAK12010_LoRaWAN/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/RAK12019_UVlight_LTR390_LoRaWan/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/RAK12019_UVlight_LTR390_LoRaWan/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/RAK12035_RAK4631_LPWAN/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/RAK12035_RAK4631_LPWAN/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Soil_Conductivity_Monitoring/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Soil_Conductivity_Monitoring/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Soil_pH_Monitoring/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Soil_pH_Monitoring/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Water_Level_Monitoring/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Water_Level_Monitoring/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Weather_Monitoring/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Weather_Monitoring/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Wind_Speed_Monitoring/.rak11200.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/examples/RAK4631/Solutions/Wind_Speed_Monitoring/.rak11300.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/RAK_examples/library.properties -------------------------------------------------------------------------------- /libraries/RAK_examples/src/lib.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RAK_examples/src/lib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RotaryEncoder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/RotaryEncoder/LICENSE -------------------------------------------------------------------------------- /libraries/RotaryEncoder/RotaryEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/RotaryEncoder/RotaryEncoder.cpp -------------------------------------------------------------------------------- /libraries/RotaryEncoder/RotaryEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/RotaryEncoder/RotaryEncoder.h -------------------------------------------------------------------------------- /libraries/RotaryEncoder/SwRotaryEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/RotaryEncoder/SwRotaryEncoder.cpp -------------------------------------------------------------------------------- /libraries/RotaryEncoder/SwRotaryEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/RotaryEncoder/SwRotaryEncoder.h -------------------------------------------------------------------------------- /libraries/RotaryEncoder/examples/HwEncoderPoll/HwEncoderPoll.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/RotaryEncoder/examples/HwEncoderPoll/HwEncoderPoll.ino -------------------------------------------------------------------------------- /libraries/RotaryEncoder/examples/SwEncoderPoll/SwEncoderPoll.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/RotaryEncoder/examples/SwEncoderPoll/SwEncoderPoll.ino -------------------------------------------------------------------------------- /libraries/RotaryEncoder/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/RotaryEncoder/keywords.txt -------------------------------------------------------------------------------- /libraries/RotaryEncoder/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/RotaryEncoder/library.properties -------------------------------------------------------------------------------- /libraries/SPI/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/SPI/SPI.cpp -------------------------------------------------------------------------------- /libraries/SPI/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/SPI/SPI.h -------------------------------------------------------------------------------- /libraries/SPI/SPI_nrf52832.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/SPI/SPI_nrf52832.cpp -------------------------------------------------------------------------------- /libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino -------------------------------------------------------------------------------- /libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/SPI/library.properties -------------------------------------------------------------------------------- /libraries/Servo/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Servo/README.adoc -------------------------------------------------------------------------------- /libraries/Servo/examples/Knob/Knob.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Servo/examples/Knob/Knob.ino -------------------------------------------------------------------------------- /libraries/Servo/examples/Sweep/Sweep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Servo/examples/Sweep/Sweep.ino -------------------------------------------------------------------------------- /libraries/Servo/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Servo/keywords.txt -------------------------------------------------------------------------------- /libraries/Servo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Servo/library.properties -------------------------------------------------------------------------------- /libraries/Servo/src/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Servo/src/Servo.h -------------------------------------------------------------------------------- /libraries/Servo/src/nrf52/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Servo/src/nrf52/Servo.cpp -------------------------------------------------------------------------------- /libraries/Servo/src/nrf52/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Servo/src/nrf52/ServoTimers.h -------------------------------------------------------------------------------- /libraries/SoftwareSerial/SoftwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/SoftwareSerial/SoftwareSerial.cpp -------------------------------------------------------------------------------- /libraries/SoftwareSerial/SoftwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/SoftwareSerial/SoftwareSerial.h -------------------------------------------------------------------------------- /libraries/SoftwareSerial/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/SoftwareSerial/keywords.txt -------------------------------------------------------------------------------- /libraries/SoftwareSerial/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/SoftwareSerial/library.properties -------------------------------------------------------------------------------- /libraries/Wire/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Wire/Wire.h -------------------------------------------------------------------------------- /libraries/Wire/Wire_nRF52.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Wire/Wire_nRF52.cpp -------------------------------------------------------------------------------- /libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/main_reader/main_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Wire/examples/main_reader/main_reader.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/main_scan/main_scan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Wire/examples/main_scan/main_scan.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/main_writer/main_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Wire/examples/main_writer/main_writer.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/secondary_sender/secondary_sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Wire/examples/secondary_sender/secondary_sender.ino -------------------------------------------------------------------------------- /libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/libraries/Wire/library.properties -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/package.json -------------------------------------------------------------------------------- /package_raknrf_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/package_raknrf_index.json -------------------------------------------------------------------------------- /platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/platform.txt -------------------------------------------------------------------------------- /programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/programmers.txt -------------------------------------------------------------------------------- /tools/adafruit-nrfutil/macos/adafruit-nrfutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/adafruit-nrfutil/macos/adafruit-nrfutil -------------------------------------------------------------------------------- /tools/adafruit-nrfutil/win32/adafruit-nrfutil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/adafruit-nrfutil/win32/adafruit-nrfutil.exe -------------------------------------------------------------------------------- /tools/build_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/build_all.py -------------------------------------------------------------------------------- /tools/makeboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/makeboards.py -------------------------------------------------------------------------------- /tools/midi_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/midi_tests/README.md -------------------------------------------------------------------------------- /tools/midi_tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/midi_tests/package.json -------------------------------------------------------------------------------- /tools/midi_tests/rx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/midi_tests/rx.js -------------------------------------------------------------------------------- /tools/midi_tests/rx_arduino/rx_arduino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/midi_tests/rx_arduino/rx_arduino.ino -------------------------------------------------------------------------------- /tools/midi_tests/tx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/midi_tests/tx.js -------------------------------------------------------------------------------- /tools/midi_tests/tx_arduino/tx_arduino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/midi_tests/tx_arduino/tx_arduino.ino -------------------------------------------------------------------------------- /tools/pynrfbintool/nrfbintool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/pynrfbintool/nrfbintool.c -------------------------------------------------------------------------------- /tools/pynrfbintool/pynrfbintool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/pynrfbintool/pynrfbintool.py -------------------------------------------------------------------------------- /tools/pynrfbintool/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/pynrfbintool/readme.md -------------------------------------------------------------------------------- /tools/uf2conv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/uf2conv/LICENSE.txt -------------------------------------------------------------------------------- /tools/uf2conv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/uf2conv/README.md -------------------------------------------------------------------------------- /tools/uf2conv/uf2conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/uf2conv/uf2conv.py -------------------------------------------------------------------------------- /tools/update_bootloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/tools/update_bootloader.py -------------------------------------------------------------------------------- /variants/WisCore_RAK4600_Board/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/variants/WisCore_RAK4600_Board/variant.cpp -------------------------------------------------------------------------------- /variants/WisCore_RAK4600_Board/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/variants/WisCore_RAK4600_Board/variant.h -------------------------------------------------------------------------------- /variants/WisCore_RAK4631_Board/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/variants/WisCore_RAK4631_Board/variant.cpp -------------------------------------------------------------------------------- /variants/WisCore_RAK4631_Board/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAKWireless/RAK-nRF52-Arduino/HEAD/variants/WisCore_RAK4631_Board/variant.h --------------------------------------------------------------------------------