├── .gitignore ├── LICENSE ├── Makefile ├── MakefileSrc.mk ├── MakefileTarget.mk ├── README.md ├── _target_sdcc_nrf24le1_24 ├── Makefile ├── MakefileSrc └── include │ └── target_nrf24le1_sdk.h ├── _target_sdcc_nrf24le1_32 ├── Makefile ├── MakefileSrc └── include │ └── target_nrf24le1_sdk.h ├── _target_sdcc_nrf24le1_48 ├── Makefile ├── MakefileSrc └── include │ └── target_nrf24le1_sdk.h ├── include ├── acomp.h ├── adc.h ├── delay.h ├── enc_dec_accel.h ├── gpio.h ├── inline │ ├── watchdog_calc.inc │ ├── watchdog_get_wdsv_count.inc │ ├── watchdog_set_wdsv_count.inc │ └── watchdog_setup.inc ├── interrupt.h ├── memory.h ├── mspi.h ├── owi.h ├── pwm.h ├── pwr_clk_mgmt.h ├── reg24le1.h ├── rf.h ├── rng.h ├── rtc2.h ├── sspi.h ├── timer0.h ├── timer1.h ├── timer2.h ├── uart.h ├── w2.h └── watchdog.h └── src ├── acomp ├── Makefile └── src │ └── acomp_configure.c ├── adc ├── Makefile └── src │ ├── adc_configure.c │ ├── adc_set_input_channel.c │ ├── adc_start_single_conversion.c │ └── adc_start_single_conversion_get_value.c ├── delay ├── Makefile └── src │ ├── delay_ms.c │ ├── delay_s.c │ └── delay_us.c ├── gpio ├── Makefile └── src │ ├── gpio_pin_configure.c │ ├── gpio_pin_dir_input.c │ ├── gpio_pin_dir_output.c │ ├── gpio_pin_val_clear.c │ ├── gpio_pin_val_complement.c │ ├── gpio_pin_val_read.c │ ├── gpio_pin_val_set.c │ └── gpio_pin_val_write.c ├── interrupt ├── Makefile └── src │ ├── interrupt_configure_ifp.c │ └── interrupt_set_priority.c ├── memory ├── Makefile └── src │ ├── memory_flash_can_byte_be_written_without_erase.c │ ├── memory_flash_copy_page_to_ram.c │ ├── memory_flash_copy_ram_to_page.c │ ├── memory_flash_does_address_exist_in_flash.c │ ├── memory_flash_erase_page.c │ ├── memory_flash_get_page_num_from_address.c │ ├── memory_flash_get_page_size.c │ ├── memory_flash_get_page_start_address.c │ ├── memory_flash_read_byte.c │ ├── memory_flash_read_bytes.c │ ├── memory_flash_write_byte.c │ ├── memory_flash_write_bytes.c │ └── memory_flash_write_bytes_smart.c ├── mspi ├── Makefile └── src │ ├── mspi_configure.c │ └── mspi_read_write.c ├── owi ├── Makefile └── src │ ├── owi_check_rom.c │ ├── owi_check_scratchpad.c │ ├── owi_crc.c │ ├── owi_detect_presence.c │ ├── owi_match_rom.c │ ├── owi_pin_configure.c │ ├── owi_read_bit.c │ ├── owi_read_rom.c │ ├── owi_receive_byte.c │ ├── owi_search_devices.c │ ├── owi_search_rom.c │ ├── owi_send_byte.c │ ├── owi_skip_rom.c │ ├── owi_write_bit_0.c │ └── owi_write_bit_1.c ├── pwm ├── Makefile └── src │ ├── pwm_configure.c │ ├── pwm_start.c │ └── pwm_stop.c ├── pwr_clk_mgmt ├── Makefile └── src │ ├── pwr_clk_mgmt_cclk_configure.c │ ├── pwr_clk_mgmt_clklf_configure.c │ ├── pwr_clk_mgmt_get_cclk_freq_in_hz.c │ ├── pwr_clk_mgmt_get_cclk_freq_in_khz.c │ ├── pwr_clk_mgmt_op_mode_configure.c │ ├── pwr_clk_mgmt_pwr_failure_configure.c │ ├── pwr_clk_mgmt_wakeup_pins_configure.c │ └── pwr_clk_mgmt_wakeup_sources_configure.c ├── rf ├── Makefile └── src │ ├── rf_configure.c │ ├── rf_configure_debug.c │ ├── rf_configure_debug_lite.c │ ├── rf_get_all_registers.c │ ├── rf_irq_clear.c │ ├── rf_irq_clear_all.c │ ├── rf_is_rpd_active.c │ ├── rf_power_down.c │ ├── rf_power_down_param.c │ ├── rf_power_up.c │ ├── rf_power_up_param.c │ ├── rf_read_register.c │ ├── rf_read_register_1_byte.c │ ├── rf_read_rx_payload.c │ ├── rf_read_rx_payload_width.c │ ├── rf_rx_fifo_is_empty.c │ ├── rf_rx_fifo_is_full.c │ ├── rf_set_as_rx.c │ ├── rf_set_as_tx.c │ ├── rf_set_data_rate.c │ ├── rf_set_output_power.c │ ├── rf_set_rf_channel.c │ ├── rf_set_rx_addr.c │ ├── rf_set_tx_addr.c │ ├── rf_spi_configure_enable.c │ ├── rf_spi_execute_command.c │ ├── rf_spi_send_read.c │ ├── rf_spi_send_read_byte.c │ ├── rf_src.h │ ├── rf_transmit.c │ ├── rf_tx_fifo_is_empty.c │ ├── rf_tx_fifo_is_full.c │ ├── rf_write_register.c │ ├── rf_write_tx_ack_payload.c │ ├── rf_write_tx_payload.c │ └── rf_write_tx_payload_noack.c ├── rng ├── Makefile └── src │ ├── rng_configure.c │ ├── rng_get_next_byte.c │ └── rng_get_one_byte_and_turn_off.c ├── rtc2 ├── Makefile └── src │ ├── rtc2_configure.c │ └── rtc2_set_compare_val.c ├── sspi ├── Makefile └── src │ ├── sspi_configure.c │ └── sspi_read_write.c ├── timer0 ├── Makefile └── src │ └── timer0_configure.c ├── timer1 ├── Makefile └── src │ └── timer1_configure.c ├── timer2 ├── Makefile └── src │ ├── timer2_calc_actual_period.c │ ├── timer2_calc_crc_val.c │ ├── timer2_configure_auto_reload_calc.c │ └── timer2_configure_manual_reload_calc.c ├── uart ├── Makefile └── src │ ├── putchar.c │ ├── uart_calc_actual_baud_rate_from_s0rel.c │ ├── uart_calc_actual_baud_rate_from_th1.c │ ├── uart_calc_s0rel_value.c │ ├── uart_calc_th1_value.c │ ├── uart_configure_auto_baud_calc.c │ ├── uart_configure_manual_baud_calc.c │ ├── uart_send_wait_for_complete.c │ └── uart_wait_for_rx_and_get.c ├── w2 ├── Makefile └── src │ ├── w2_configure.c │ ├── w2_master_cur_address_read.c │ ├── w2_master_process_start_request.c │ ├── w2_master_process_stop_request.c │ ├── w2_master_random_address_read.c │ ├── w2_master_rx_byte.c │ ├── w2_master_software_reset.c │ ├── w2_master_tx_byte.c │ ├── w2_master_write_control_bytes.c │ ├── w2_master_write_to.c │ ├── w2_src.h │ └── w2_wait_for_byte_tx_or_rx.c └── watchdog ├── Makefile └── src └── watchdog_cause_software_reset.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/Makefile -------------------------------------------------------------------------------- /MakefileSrc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/MakefileSrc.mk -------------------------------------------------------------------------------- /MakefileTarget.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/MakefileTarget.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/README.md -------------------------------------------------------------------------------- /_target_sdcc_nrf24le1_24/Makefile: -------------------------------------------------------------------------------- 1 | include ../MakefileTarget.mk 2 | -------------------------------------------------------------------------------- /_target_sdcc_nrf24le1_24/MakefileSrc: -------------------------------------------------------------------------------- 1 | include ../../MakefileSrc.mk 2 | -------------------------------------------------------------------------------- /_target_sdcc_nrf24le1_24/include/target_nrf24le1_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/_target_sdcc_nrf24le1_24/include/target_nrf24le1_sdk.h -------------------------------------------------------------------------------- /_target_sdcc_nrf24le1_32/Makefile: -------------------------------------------------------------------------------- 1 | include ../MakefileTarget.mk 2 | -------------------------------------------------------------------------------- /_target_sdcc_nrf24le1_32/MakefileSrc: -------------------------------------------------------------------------------- 1 | include ../../MakefileSrc.mk 2 | -------------------------------------------------------------------------------- /_target_sdcc_nrf24le1_32/include/target_nrf24le1_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/_target_sdcc_nrf24le1_32/include/target_nrf24le1_sdk.h -------------------------------------------------------------------------------- /_target_sdcc_nrf24le1_48/Makefile: -------------------------------------------------------------------------------- 1 | include ../MakefileTarget.mk 2 | -------------------------------------------------------------------------------- /_target_sdcc_nrf24le1_48/MakefileSrc: -------------------------------------------------------------------------------- 1 | include ../../MakefileSrc.mk 2 | -------------------------------------------------------------------------------- /_target_sdcc_nrf24le1_48/include/target_nrf24le1_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/_target_sdcc_nrf24le1_48/include/target_nrf24le1_sdk.h -------------------------------------------------------------------------------- /include/acomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/acomp.h -------------------------------------------------------------------------------- /include/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/adc.h -------------------------------------------------------------------------------- /include/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/delay.h -------------------------------------------------------------------------------- /include/enc_dec_accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/enc_dec_accel.h -------------------------------------------------------------------------------- /include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/gpio.h -------------------------------------------------------------------------------- /include/inline/watchdog_calc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/inline/watchdog_calc.inc -------------------------------------------------------------------------------- /include/inline/watchdog_get_wdsv_count.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/inline/watchdog_get_wdsv_count.inc -------------------------------------------------------------------------------- /include/inline/watchdog_set_wdsv_count.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/inline/watchdog_set_wdsv_count.inc -------------------------------------------------------------------------------- /include/inline/watchdog_setup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/inline/watchdog_setup.inc -------------------------------------------------------------------------------- /include/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/interrupt.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/memory.h -------------------------------------------------------------------------------- /include/mspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/mspi.h -------------------------------------------------------------------------------- /include/owi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/owi.h -------------------------------------------------------------------------------- /include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/pwm.h -------------------------------------------------------------------------------- /include/pwr_clk_mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/pwr_clk_mgmt.h -------------------------------------------------------------------------------- /include/reg24le1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/reg24le1.h -------------------------------------------------------------------------------- /include/rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/rf.h -------------------------------------------------------------------------------- /include/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/rng.h -------------------------------------------------------------------------------- /include/rtc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/rtc2.h -------------------------------------------------------------------------------- /include/sspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/sspi.h -------------------------------------------------------------------------------- /include/timer0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/timer0.h -------------------------------------------------------------------------------- /include/timer1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/timer1.h -------------------------------------------------------------------------------- /include/timer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/timer2.h -------------------------------------------------------------------------------- /include/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/uart.h -------------------------------------------------------------------------------- /include/w2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/w2.h -------------------------------------------------------------------------------- /include/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/include/watchdog.h -------------------------------------------------------------------------------- /src/acomp/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/acomp/src/acomp_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/acomp/src/acomp_configure.c -------------------------------------------------------------------------------- /src/adc/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/adc/src/adc_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/adc/src/adc_configure.c -------------------------------------------------------------------------------- /src/adc/src/adc_set_input_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/adc/src/adc_set_input_channel.c -------------------------------------------------------------------------------- /src/adc/src/adc_start_single_conversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/adc/src/adc_start_single_conversion.c -------------------------------------------------------------------------------- /src/adc/src/adc_start_single_conversion_get_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/adc/src/adc_start_single_conversion_get_value.c -------------------------------------------------------------------------------- /src/delay/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/delay/src/delay_ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/delay/src/delay_ms.c -------------------------------------------------------------------------------- /src/delay/src/delay_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/delay/src/delay_s.c -------------------------------------------------------------------------------- /src/delay/src/delay_us.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/delay/src/delay_us.c -------------------------------------------------------------------------------- /src/gpio/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/gpio/src/gpio_pin_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/gpio/src/gpio_pin_configure.c -------------------------------------------------------------------------------- /src/gpio/src/gpio_pin_dir_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/gpio/src/gpio_pin_dir_input.c -------------------------------------------------------------------------------- /src/gpio/src/gpio_pin_dir_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/gpio/src/gpio_pin_dir_output.c -------------------------------------------------------------------------------- /src/gpio/src/gpio_pin_val_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/gpio/src/gpio_pin_val_clear.c -------------------------------------------------------------------------------- /src/gpio/src/gpio_pin_val_complement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/gpio/src/gpio_pin_val_complement.c -------------------------------------------------------------------------------- /src/gpio/src/gpio_pin_val_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/gpio/src/gpio_pin_val_read.c -------------------------------------------------------------------------------- /src/gpio/src/gpio_pin_val_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/gpio/src/gpio_pin_val_set.c -------------------------------------------------------------------------------- /src/gpio/src/gpio_pin_val_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/gpio/src/gpio_pin_val_write.c -------------------------------------------------------------------------------- /src/interrupt/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/interrupt/src/interrupt_configure_ifp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/interrupt/src/interrupt_configure_ifp.c -------------------------------------------------------------------------------- /src/interrupt/src/interrupt_set_priority.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/interrupt/src/interrupt_set_priority.c -------------------------------------------------------------------------------- /src/memory/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/memory/src/memory_flash_can_byte_be_written_without_erase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_can_byte_be_written_without_erase.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_copy_page_to_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_copy_page_to_ram.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_copy_ram_to_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_copy_ram_to_page.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_does_address_exist_in_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_does_address_exist_in_flash.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_erase_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_erase_page.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_get_page_num_from_address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_get_page_num_from_address.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_get_page_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_get_page_size.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_get_page_start_address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_get_page_start_address.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_read_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_read_byte.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_read_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_read_bytes.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_write_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_write_byte.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_write_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_write_bytes.c -------------------------------------------------------------------------------- /src/memory/src/memory_flash_write_bytes_smart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/memory/src/memory_flash_write_bytes_smart.c -------------------------------------------------------------------------------- /src/mspi/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/mspi/src/mspi_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/mspi/src/mspi_configure.c -------------------------------------------------------------------------------- /src/mspi/src/mspi_read_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/mspi/src/mspi_read_write.c -------------------------------------------------------------------------------- /src/owi/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/owi/src/owi_check_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_check_rom.c -------------------------------------------------------------------------------- /src/owi/src/owi_check_scratchpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_check_scratchpad.c -------------------------------------------------------------------------------- /src/owi/src/owi_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_crc.c -------------------------------------------------------------------------------- /src/owi/src/owi_detect_presence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_detect_presence.c -------------------------------------------------------------------------------- /src/owi/src/owi_match_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_match_rom.c -------------------------------------------------------------------------------- /src/owi/src/owi_pin_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_pin_configure.c -------------------------------------------------------------------------------- /src/owi/src/owi_read_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_read_bit.c -------------------------------------------------------------------------------- /src/owi/src/owi_read_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_read_rom.c -------------------------------------------------------------------------------- /src/owi/src/owi_receive_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_receive_byte.c -------------------------------------------------------------------------------- /src/owi/src/owi_search_devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_search_devices.c -------------------------------------------------------------------------------- /src/owi/src/owi_search_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_search_rom.c -------------------------------------------------------------------------------- /src/owi/src/owi_send_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_send_byte.c -------------------------------------------------------------------------------- /src/owi/src/owi_skip_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_skip_rom.c -------------------------------------------------------------------------------- /src/owi/src/owi_write_bit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_write_bit_0.c -------------------------------------------------------------------------------- /src/owi/src/owi_write_bit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/owi/src/owi_write_bit_1.c -------------------------------------------------------------------------------- /src/pwm/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/pwm/src/pwm_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwm/src/pwm_configure.c -------------------------------------------------------------------------------- /src/pwm/src/pwm_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwm/src/pwm_start.c -------------------------------------------------------------------------------- /src/pwm/src/pwm_stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwm/src/pwm_stop.c -------------------------------------------------------------------------------- /src/pwr_clk_mgmt/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/pwr_clk_mgmt/src/pwr_clk_mgmt_cclk_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwr_clk_mgmt/src/pwr_clk_mgmt_cclk_configure.c -------------------------------------------------------------------------------- /src/pwr_clk_mgmt/src/pwr_clk_mgmt_clklf_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwr_clk_mgmt/src/pwr_clk_mgmt_clklf_configure.c -------------------------------------------------------------------------------- /src/pwr_clk_mgmt/src/pwr_clk_mgmt_get_cclk_freq_in_hz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwr_clk_mgmt/src/pwr_clk_mgmt_get_cclk_freq_in_hz.c -------------------------------------------------------------------------------- /src/pwr_clk_mgmt/src/pwr_clk_mgmt_get_cclk_freq_in_khz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwr_clk_mgmt/src/pwr_clk_mgmt_get_cclk_freq_in_khz.c -------------------------------------------------------------------------------- /src/pwr_clk_mgmt/src/pwr_clk_mgmt_op_mode_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwr_clk_mgmt/src/pwr_clk_mgmt_op_mode_configure.c -------------------------------------------------------------------------------- /src/pwr_clk_mgmt/src/pwr_clk_mgmt_pwr_failure_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwr_clk_mgmt/src/pwr_clk_mgmt_pwr_failure_configure.c -------------------------------------------------------------------------------- /src/pwr_clk_mgmt/src/pwr_clk_mgmt_wakeup_pins_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwr_clk_mgmt/src/pwr_clk_mgmt_wakeup_pins_configure.c -------------------------------------------------------------------------------- /src/pwr_clk_mgmt/src/pwr_clk_mgmt_wakeup_sources_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/pwr_clk_mgmt/src/pwr_clk_mgmt_wakeup_sources_configure.c -------------------------------------------------------------------------------- /src/rf/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/rf/src/rf_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_configure.c -------------------------------------------------------------------------------- /src/rf/src/rf_configure_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_configure_debug.c -------------------------------------------------------------------------------- /src/rf/src/rf_configure_debug_lite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_configure_debug_lite.c -------------------------------------------------------------------------------- /src/rf/src/rf_get_all_registers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_get_all_registers.c -------------------------------------------------------------------------------- /src/rf/src/rf_irq_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_irq_clear.c -------------------------------------------------------------------------------- /src/rf/src/rf_irq_clear_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_irq_clear_all.c -------------------------------------------------------------------------------- /src/rf/src/rf_is_rpd_active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_is_rpd_active.c -------------------------------------------------------------------------------- /src/rf/src/rf_power_down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_power_down.c -------------------------------------------------------------------------------- /src/rf/src/rf_power_down_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_power_down_param.c -------------------------------------------------------------------------------- /src/rf/src/rf_power_up.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_power_up.c -------------------------------------------------------------------------------- /src/rf/src/rf_power_up_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_power_up_param.c -------------------------------------------------------------------------------- /src/rf/src/rf_read_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_read_register.c -------------------------------------------------------------------------------- /src/rf/src/rf_read_register_1_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_read_register_1_byte.c -------------------------------------------------------------------------------- /src/rf/src/rf_read_rx_payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_read_rx_payload.c -------------------------------------------------------------------------------- /src/rf/src/rf_read_rx_payload_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_read_rx_payload_width.c -------------------------------------------------------------------------------- /src/rf/src/rf_rx_fifo_is_empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_rx_fifo_is_empty.c -------------------------------------------------------------------------------- /src/rf/src/rf_rx_fifo_is_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_rx_fifo_is_full.c -------------------------------------------------------------------------------- /src/rf/src/rf_set_as_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_set_as_rx.c -------------------------------------------------------------------------------- /src/rf/src/rf_set_as_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_set_as_tx.c -------------------------------------------------------------------------------- /src/rf/src/rf_set_data_rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_set_data_rate.c -------------------------------------------------------------------------------- /src/rf/src/rf_set_output_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_set_output_power.c -------------------------------------------------------------------------------- /src/rf/src/rf_set_rf_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_set_rf_channel.c -------------------------------------------------------------------------------- /src/rf/src/rf_set_rx_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_set_rx_addr.c -------------------------------------------------------------------------------- /src/rf/src/rf_set_tx_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_set_tx_addr.c -------------------------------------------------------------------------------- /src/rf/src/rf_spi_configure_enable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_spi_configure_enable.c -------------------------------------------------------------------------------- /src/rf/src/rf_spi_execute_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_spi_execute_command.c -------------------------------------------------------------------------------- /src/rf/src/rf_spi_send_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_spi_send_read.c -------------------------------------------------------------------------------- /src/rf/src/rf_spi_send_read_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_spi_send_read_byte.c -------------------------------------------------------------------------------- /src/rf/src/rf_src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_src.h -------------------------------------------------------------------------------- /src/rf/src/rf_transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_transmit.c -------------------------------------------------------------------------------- /src/rf/src/rf_tx_fifo_is_empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_tx_fifo_is_empty.c -------------------------------------------------------------------------------- /src/rf/src/rf_tx_fifo_is_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_tx_fifo_is_full.c -------------------------------------------------------------------------------- /src/rf/src/rf_write_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_write_register.c -------------------------------------------------------------------------------- /src/rf/src/rf_write_tx_ack_payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_write_tx_ack_payload.c -------------------------------------------------------------------------------- /src/rf/src/rf_write_tx_payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_write_tx_payload.c -------------------------------------------------------------------------------- /src/rf/src/rf_write_tx_payload_noack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rf/src/rf_write_tx_payload_noack.c -------------------------------------------------------------------------------- /src/rng/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/rng/src/rng_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rng/src/rng_configure.c -------------------------------------------------------------------------------- /src/rng/src/rng_get_next_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rng/src/rng_get_next_byte.c -------------------------------------------------------------------------------- /src/rng/src/rng_get_one_byte_and_turn_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rng/src/rng_get_one_byte_and_turn_off.c -------------------------------------------------------------------------------- /src/rtc2/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/rtc2/src/rtc2_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rtc2/src/rtc2_configure.c -------------------------------------------------------------------------------- /src/rtc2/src/rtc2_set_compare_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/rtc2/src/rtc2_set_compare_val.c -------------------------------------------------------------------------------- /src/sspi/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/sspi/src/sspi_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/sspi/src/sspi_configure.c -------------------------------------------------------------------------------- /src/sspi/src/sspi_read_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/sspi/src/sspi_read_write.c -------------------------------------------------------------------------------- /src/timer0/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/timer0/src/timer0_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/timer0/src/timer0_configure.c -------------------------------------------------------------------------------- /src/timer1/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/timer1/src/timer1_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/timer1/src/timer1_configure.c -------------------------------------------------------------------------------- /src/timer2/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/timer2/src/timer2_calc_actual_period.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/timer2/src/timer2_calc_actual_period.c -------------------------------------------------------------------------------- /src/timer2/src/timer2_calc_crc_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/timer2/src/timer2_calc_crc_val.c -------------------------------------------------------------------------------- /src/timer2/src/timer2_configure_auto_reload_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/timer2/src/timer2_configure_auto_reload_calc.c -------------------------------------------------------------------------------- /src/timer2/src/timer2_configure_manual_reload_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/timer2/src/timer2_configure_manual_reload_calc.c -------------------------------------------------------------------------------- /src/uart/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/uart/src/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/uart/src/putchar.c -------------------------------------------------------------------------------- /src/uart/src/uart_calc_actual_baud_rate_from_s0rel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/uart/src/uart_calc_actual_baud_rate_from_s0rel.c -------------------------------------------------------------------------------- /src/uart/src/uart_calc_actual_baud_rate_from_th1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/uart/src/uart_calc_actual_baud_rate_from_th1.c -------------------------------------------------------------------------------- /src/uart/src/uart_calc_s0rel_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/uart/src/uart_calc_s0rel_value.c -------------------------------------------------------------------------------- /src/uart/src/uart_calc_th1_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/uart/src/uart_calc_th1_value.c -------------------------------------------------------------------------------- /src/uart/src/uart_configure_auto_baud_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/uart/src/uart_configure_auto_baud_calc.c -------------------------------------------------------------------------------- /src/uart/src/uart_configure_manual_baud_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/uart/src/uart_configure_manual_baud_calc.c -------------------------------------------------------------------------------- /src/uart/src/uart_send_wait_for_complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/uart/src/uart_send_wait_for_complete.c -------------------------------------------------------------------------------- /src/uart/src/uart_wait_for_rx_and_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/uart/src/uart_wait_for_rx_and_get.c -------------------------------------------------------------------------------- /src/w2/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/w2/src/w2_configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_configure.c -------------------------------------------------------------------------------- /src/w2/src/w2_master_cur_address_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_master_cur_address_read.c -------------------------------------------------------------------------------- /src/w2/src/w2_master_process_start_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_master_process_start_request.c -------------------------------------------------------------------------------- /src/w2/src/w2_master_process_stop_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_master_process_stop_request.c -------------------------------------------------------------------------------- /src/w2/src/w2_master_random_address_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_master_random_address_read.c -------------------------------------------------------------------------------- /src/w2/src/w2_master_rx_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_master_rx_byte.c -------------------------------------------------------------------------------- /src/w2/src/w2_master_software_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_master_software_reset.c -------------------------------------------------------------------------------- /src/w2/src/w2_master_tx_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_master_tx_byte.c -------------------------------------------------------------------------------- /src/w2/src/w2_master_write_control_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_master_write_control_bytes.c -------------------------------------------------------------------------------- /src/w2/src/w2_master_write_to.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_master_write_to.c -------------------------------------------------------------------------------- /src/w2/src/w2_src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_src.h -------------------------------------------------------------------------------- /src/w2/src/w2_wait_for_byte_tx_or_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/w2/src/w2_wait_for_byte_tx_or_rx.c -------------------------------------------------------------------------------- /src/watchdog/Makefile: -------------------------------------------------------------------------------- 1 | include $(TARGETSRCMAKEFILE) 2 | -------------------------------------------------------------------------------- /src/watchdog/src/watchdog_cause_software_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanCording/nRF24LE1_SDK/HEAD/src/watchdog/src/watchdog_cause_software_reset.c --------------------------------------------------------------------------------