├── .gitignore ├── 0001-fix-arduino-bootloaders.patch ├── Makefile.c33 ├── Makefile.minima ├── Makefile.opta-analog ├── Makefile.opta-digital ├── Makefile.wifi ├── README.md ├── compile.sh └── src ├── bossa.c ├── flash.h ├── irq_table.c ├── main.c ├── r_dtc_cfg.h ├── r_flash_hp_cfg.h ├── r_flash_lp_cfg.h ├── r_gpt_cfg.h ├── r_iic_master_cfg.h ├── r_sci_i2c_cfg.h ├── r_sci_uart_cfg.h ├── tusb_config.h └── usb_descriptors.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/.gitignore -------------------------------------------------------------------------------- /0001-fix-arduino-bootloaders.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/0001-fix-arduino-bootloaders.patch -------------------------------------------------------------------------------- /Makefile.c33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/Makefile.c33 -------------------------------------------------------------------------------- /Makefile.minima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/Makefile.minima -------------------------------------------------------------------------------- /Makefile.opta-analog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/Makefile.opta-analog -------------------------------------------------------------------------------- /Makefile.opta-digital: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/Makefile.opta-digital -------------------------------------------------------------------------------- /Makefile.wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/Makefile.wifi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/README.md -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/compile.sh -------------------------------------------------------------------------------- /src/bossa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/bossa.c -------------------------------------------------------------------------------- /src/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/flash.h -------------------------------------------------------------------------------- /src/irq_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/irq_table.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/main.c -------------------------------------------------------------------------------- /src/r_dtc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/r_dtc_cfg.h -------------------------------------------------------------------------------- /src/r_flash_hp_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/r_flash_hp_cfg.h -------------------------------------------------------------------------------- /src/r_flash_lp_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/r_flash_lp_cfg.h -------------------------------------------------------------------------------- /src/r_gpt_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/r_gpt_cfg.h -------------------------------------------------------------------------------- /src/r_iic_master_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/r_iic_master_cfg.h -------------------------------------------------------------------------------- /src/r_sci_i2c_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/r_sci_i2c_cfg.h -------------------------------------------------------------------------------- /src/r_sci_uart_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/r_sci_uart_cfg.h -------------------------------------------------------------------------------- /src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/tusb_config.h -------------------------------------------------------------------------------- /src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/arduino-renesas-bootloader/HEAD/src/usb_descriptors.c --------------------------------------------------------------------------------