├── .gitignore ├── CODEOWNERS ├── drivers └── nrf_802154 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── common │ ├── CMakeLists.txt │ ├── include │ │ ├── nrf_802154.h │ │ ├── nrf_802154_assert.h │ │ ├── nrf_802154_callouts.h │ │ ├── nrf_802154_common_utils.h │ │ ├── nrf_802154_compiler.h │ │ ├── nrf_802154_config.h │ │ ├── nrf_802154_const.h │ │ ├── nrf_802154_nrfx_addons.h │ │ └── nrf_802154_types.h │ └── src │ │ └── nrf_802154_common_utils.c │ ├── driver │ ├── CMakeLists.txt │ ├── include │ │ ├── nrf_802154_irq_handlers.h │ │ └── platform │ │ │ └── nrf_802154_random.h │ └── src │ │ ├── mac_features │ │ ├── ack_generator │ │ │ ├── nrf_802154_ack_data.c │ │ │ ├── nrf_802154_ack_data.h │ │ │ ├── nrf_802154_ack_generator.c │ │ │ ├── nrf_802154_ack_generator.h │ │ │ ├── nrf_802154_enh_ack_generator.c │ │ │ ├── nrf_802154_enh_ack_generator.h │ │ │ ├── nrf_802154_imm_ack_generator.c │ │ │ └── nrf_802154_imm_ack_generator.h │ │ ├── nrf_802154_ack_timeout.h │ │ ├── nrf_802154_csma_ca.c │ │ ├── nrf_802154_csma_ca.h │ │ ├── nrf_802154_delayed_trx.c │ │ ├── nrf_802154_delayed_trx.h │ │ ├── nrf_802154_filter.c │ │ ├── nrf_802154_filter.h │ │ ├── nrf_802154_frame.h │ │ ├── nrf_802154_frame_parser.c │ │ ├── nrf_802154_frame_parser.h │ │ ├── nrf_802154_ie_writer.c │ │ ├── nrf_802154_ie_writer.h │ │ ├── nrf_802154_imm_tx.c │ │ ├── nrf_802154_imm_tx.h │ │ ├── nrf_802154_precise_ack_timeout.c │ │ ├── nrf_802154_security_pib.h │ │ ├── nrf_802154_security_pib_ram.c │ │ ├── nrf_802154_security_writer.c │ │ ├── nrf_802154_security_writer.h │ │ ├── nrf_802154_tx_timestamp_provider.c │ │ └── nrf_802154_tx_timestamp_provider.h │ │ ├── nrf_802154.c │ │ ├── nrf_802154_aes_ccm.h │ │ ├── nrf_802154_aes_ccm_acc_ccm.c │ │ ├── nrf_802154_aes_ccm_acc_ecb.c │ │ ├── nrf_802154_bsim_utils.c │ │ ├── nrf_802154_bsim_utils.h │ │ ├── nrf_802154_co.c │ │ ├── nrf_802154_co.h │ │ ├── nrf_802154_core.c │ │ ├── nrf_802154_core.h │ │ ├── nrf_802154_core_hooks.c │ │ ├── nrf_802154_core_hooks.h │ │ ├── nrf_802154_critical_section.c │ │ ├── nrf_802154_critical_section.h │ │ ├── nrf_802154_debug.c │ │ ├── nrf_802154_debug.h │ │ ├── nrf_802154_debug_core.h │ │ ├── nrf_802154_debug_gpio.c │ │ ├── nrf_802154_debug_log.h │ │ ├── nrf_802154_debug_log_codes.h │ │ ├── nrf_802154_encrypt.c │ │ ├── nrf_802154_encrypt.h │ │ ├── nrf_802154_notification.h │ │ ├── nrf_802154_notification_direct.c │ │ ├── nrf_802154_notification_swi.c │ │ ├── nrf_802154_peripherals.h │ │ ├── nrf_802154_peripherals_alloc.c │ │ ├── nrf_802154_peripherals_nrf52.h │ │ ├── nrf_802154_peripherals_nrf53.h │ │ ├── nrf_802154_peripherals_nrf54h.h │ │ ├── nrf_802154_peripherals_nrf54l.h │ │ ├── nrf_802154_pib.c │ │ ├── nrf_802154_pib.h │ │ ├── nrf_802154_procedures_duration.h │ │ ├── nrf_802154_queue.c │ │ ├── nrf_802154_queue.h │ │ ├── nrf_802154_request.h │ │ ├── nrf_802154_request_direct.c │ │ ├── nrf_802154_request_swi.c │ │ ├── nrf_802154_rssi.c │ │ ├── nrf_802154_rssi.h │ │ ├── nrf_802154_rx_buffer.c │ │ ├── nrf_802154_rx_buffer.h │ │ ├── nrf_802154_stats.c │ │ ├── nrf_802154_stats.h │ │ ├── nrf_802154_swi.c │ │ ├── nrf_802154_swi.h │ │ ├── nrf_802154_trx.c │ │ ├── nrf_802154_trx.h │ │ ├── nrf_802154_trx_dppi.c │ │ ├── nrf_802154_trx_ppi.c │ │ ├── nrf_802154_trx_ppi_api.h │ │ ├── nrf_802154_tx_power.c │ │ ├── nrf_802154_tx_power.h │ │ ├── nrf_802154_tx_work_buffer.c │ │ ├── nrf_802154_tx_work_buffer.h │ │ ├── nrf_802154_types_internal.h │ │ ├── nrf_802154_utils.h │ │ └── nrf_802154_utils_byteorder.h │ ├── serialization │ ├── CMakeLists.txt │ ├── include │ │ ├── platform │ │ │ ├── nrf_802154_serialization_crit_sect.h │ │ │ ├── nrf_802154_spinel_backend.h │ │ │ ├── nrf_802154_spinel_backend_callouts.h │ │ │ ├── nrf_802154_spinel_log.h │ │ │ └── nrf_802154_spinel_response_notifier.h │ │ └── serialization │ │ │ ├── nrf_802154_serialization.h │ │ │ ├── nrf_802154_serialization_config.h │ │ │ └── nrf_802154_serialization_error.h │ ├── spinel_base │ │ ├── spinel.c │ │ └── spinel.h │ └── src │ │ ├── include │ │ ├── nrf_802154_buffer_allocator.h │ │ ├── nrf_802154_buffer_mgr_dst.h │ │ ├── nrf_802154_buffer_mgr_src.h │ │ ├── nrf_802154_kvmap.h │ │ ├── nrf_802154_nrfx_addons.h │ │ ├── nrf_802154_serialization_error_helper.h │ │ ├── nrf_802154_spinel.h │ │ ├── nrf_802154_spinel_datatypes.h │ │ ├── nrf_802154_spinel_dec.h │ │ ├── nrf_802154_spinel_dec_app.h │ │ ├── nrf_802154_spinel_dec_net.h │ │ ├── nrf_802154_spinel_enc.h │ │ ├── nrf_802154_spinel_enc_app.h │ │ └── nrf_802154_spinel_enc_net.h │ │ ├── nrf_802154_buffer_allocator.c │ │ ├── nrf_802154_buffer_mgr_dst.c │ │ ├── nrf_802154_buffer_mgr_src.c │ │ ├── nrf_802154_kvmap.c │ │ ├── nrf_802154_spinel.c │ │ ├── nrf_802154_spinel_app.c │ │ ├── nrf_802154_spinel_dec.c │ │ ├── nrf_802154_spinel_dec_app.c │ │ ├── nrf_802154_spinel_dec_net.c │ │ └── nrf_802154_spinel_net.c │ └── sl │ ├── CMakeLists.txt │ ├── include │ ├── nrf_802154_fal.h │ ├── nrf_802154_sl_ant_div.h │ ├── nrf_802154_sl_atomic_list.h │ ├── nrf_802154_sl_atomics.h │ ├── nrf_802154_sl_capabilities.h │ ├── nrf_802154_sl_config.h │ ├── nrf_802154_sl_crit_sect_if.h │ ├── nrf_802154_sl_fault.h │ ├── nrf_802154_sl_log.h │ ├── nrf_802154_sl_rsch.h │ ├── nrf_802154_sl_stats.h │ ├── nrf_802154_sl_timer.h │ ├── nrf_802154_sl_types.h │ ├── nrf_802154_sl_utils.h │ ├── platform │ │ ├── nrf_802154_clock.h │ │ ├── nrf_802154_hp_timer.h │ │ ├── nrf_802154_irq.h │ │ ├── nrf_802154_platform_sl_lptimer.h │ │ ├── nrf_802154_platform_timestamper.h │ │ └── nrf_802154_temperature.h │ ├── rsch │ │ ├── nrf_802154_rsch.h │ │ └── nrf_802154_rsch_crit_sect.h │ └── timer │ │ └── nrf_802154_timer_coord.h │ └── sl_opensource │ ├── CMakeLists.txt │ ├── include │ ├── mpsl_fem_config_common.h │ ├── mpsl_tx_power.h │ ├── nrf_802154_sl_periphs.h │ ├── nrf_errno.h │ └── protocol │ │ └── mpsl_fem_protocol_api.h │ └── src │ ├── nrf_802154_sl_ant_div.c │ ├── nrf_802154_sl_capabilities.c │ ├── nrf_802154_sl_coex.c │ ├── nrf_802154_sl_crit_sect_if.c │ ├── nrf_802154_sl_fem.c │ ├── nrf_802154_sl_log.c │ ├── nrf_802154_sl_rsch.c │ └── nrf_802154_sl_timer.c ├── nrfs ├── CHANGELOG.md ├── README.md ├── helpers │ ├── dvfs_oppoint.c │ └── dvfs_oppoint.h ├── include │ ├── internal │ │ ├── nrfs_backend.h │ │ ├── nrfs_callbacks.h │ │ ├── nrfs_ctx.h │ │ ├── nrfs_dispatcher.h │ │ ├── nrfs_hdr.h │ │ ├── nrfs_phy.h │ │ ├── requests │ │ │ ├── nrfs_audiopll_reqs.h │ │ │ ├── nrfs_clock_reqs.h │ │ │ ├── nrfs_diag_reqs.h │ │ │ ├── nrfs_dvfs_reqs.h │ │ │ ├── nrfs_gdfs_reqs.h │ │ │ ├── nrfs_gdpwr_reqs.h │ │ │ ├── nrfs_mram_reqs.h │ │ │ ├── nrfs_pmic_reqs.h │ │ │ ├── nrfs_reqs_common.h │ │ │ ├── nrfs_reset_reqs.h │ │ │ ├── nrfs_swext_reqs.h │ │ │ ├── nrfs_temp_reqs.h │ │ │ └── nrfs_usb_reqs.h │ │ └── services │ │ │ ├── nrfs_audiopll.h │ │ │ ├── nrfs_clock.h │ │ │ ├── nrfs_diag.h │ │ │ ├── nrfs_dvfs.h │ │ │ ├── nrfs_gdfs.h │ │ │ ├── nrfs_gdpwr.h │ │ │ ├── nrfs_generic.h │ │ │ ├── nrfs_mram.h │ │ │ ├── nrfs_pmic.h │ │ │ ├── nrfs_reset.h │ │ │ ├── nrfs_swext.h │ │ │ ├── nrfs_temp.h │ │ │ └── nrfs_usb.h │ ├── nrfs_common.h │ └── services │ │ ├── nrfs_audiopll.h │ │ ├── nrfs_clock.h │ │ ├── nrfs_diag.h │ │ ├── nrfs_dvfs.h │ │ ├── nrfs_gdfs.h │ │ ├── nrfs_gdpwr.h │ │ ├── nrfs_mram.h │ │ ├── nrfs_pmic.h │ │ ├── nrfs_reset.h │ │ ├── nrfs_swext.h │ │ ├── nrfs_temp.h │ │ └── nrfs_usb.h └── src │ ├── internal │ └── nrfs_dispatcher.c │ └── services │ ├── nrfs_audiopll.c │ ├── nrfs_clock.c │ ├── nrfs_diag.c │ ├── nrfs_dvfs.c │ ├── nrfs_gdfs.c │ ├── nrfs_gdpwr.c │ ├── nrfs_mram.c │ ├── nrfs_pmic.c │ ├── nrfs_reset.c │ ├── nrfs_swext.c │ ├── nrfs_temp.c │ └── nrfs_usb.c ├── nrfx ├── CHANGELOG.md ├── README ├── bsp │ └── stable │ │ ├── mdk │ │ ├── compiler_abstraction.h │ │ ├── core_vpr.h │ │ ├── haltium_interim.h │ │ ├── nrf.h │ │ ├── nrf51.h │ │ ├── nrf51.svd │ │ ├── nrf51422_xxaa_memory.h │ │ ├── nrf51422_xxab_memory.h │ │ ├── nrf51422_xxac_memory.h │ │ ├── nrf51801_xxab_memory.h │ │ ├── nrf51802_xxaa_memory.h │ │ ├── nrf51822_xxaa_memory.h │ │ ├── nrf51822_xxab_memory.h │ │ ├── nrf51822_xxac_memory.h │ │ ├── nrf51824_xxaa_memory.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 │ │ ├── nrf52.svd │ │ ├── nrf52805.h │ │ ├── nrf52805.svd │ │ ├── nrf52805_bitfields.h │ │ ├── nrf52805_peripherals.h │ │ ├── nrf52805_xxaa_memory.h │ │ ├── nrf52810.h │ │ ├── nrf52810.svd │ │ ├── nrf52810_bitfields.h │ │ ├── nrf52810_name_change.h │ │ ├── nrf52810_peripherals.h │ │ ├── nrf52810_to_nrf52811.h │ │ ├── nrf52810_xxaa_memory.h │ │ ├── nrf52811.h │ │ ├── nrf52811.svd │ │ ├── nrf52811_bitfields.h │ │ ├── nrf52811_peripherals.h │ │ ├── nrf52811_xxaa_memory.h │ │ ├── nrf52820.h │ │ ├── nrf52820.svd │ │ ├── nrf52820_bitfields.h │ │ ├── nrf52820_peripherals.h │ │ ├── nrf52820_xxaa_memory.h │ │ ├── nrf52832_peripherals.h │ │ ├── nrf52832_xxaa_memory.h │ │ ├── nrf52832_xxab_memory.h │ │ ├── nrf52833.h │ │ ├── nrf52833.svd │ │ ├── nrf52833_bitfields.h │ │ ├── nrf52833_peripherals.h │ │ ├── nrf52833_to_nrf52820.h │ │ ├── nrf52833_xxaa_memory.h │ │ ├── nrf52840.h │ │ ├── nrf52840.svd │ │ ├── nrf52840_bitfields.h │ │ ├── nrf52840_name_change.h │ │ ├── nrf52840_peripherals.h │ │ ├── nrf52840_xxaa_memory.h │ │ ├── nrf52_bitfields.h │ │ ├── nrf52_erratas.h │ │ ├── nrf52_name_change.h │ │ ├── nrf52_to_nrf52810.h │ │ ├── nrf52_to_nrf52833.h │ │ ├── nrf52_to_nrf52840.h │ │ ├── nrf5340_application.h │ │ ├── nrf5340_application.svd │ │ ├── nrf5340_application_bitfields.h │ │ ├── nrf5340_application_name_change.h │ │ ├── nrf5340_application_peripherals.h │ │ ├── nrf5340_network.h │ │ ├── nrf5340_network.svd │ │ ├── nrf5340_network_bitfields.h │ │ ├── nrf5340_network_name_change.h │ │ ├── nrf5340_network_peripherals.h │ │ ├── nrf5340_xxaa_application_memory.h │ │ ├── nrf5340_xxaa_network_memory.h │ │ ├── nrf53_erratas.h │ │ ├── nrf54h20.h │ │ ├── nrf54h20_application.h │ │ ├── nrf54h20_application.svd │ │ ├── nrf54h20_application_peripherals.h │ │ ├── nrf54h20_flpr.h │ │ ├── nrf54h20_flpr.svd │ │ ├── nrf54h20_flpr_peripherals.h │ │ ├── nrf54h20_global.h │ │ ├── nrf54h20_interim.h │ │ ├── nrf54h20_name_change.h │ │ ├── nrf54h20_peripherals.h │ │ ├── nrf54h20_ppr.h │ │ ├── nrf54h20_ppr.svd │ │ ├── nrf54h20_ppr_peripherals.h │ │ ├── nrf54h20_radiocore.h │ │ ├── nrf54h20_radiocore.svd │ │ ├── nrf54h20_radiocore_peripherals.h │ │ ├── nrf54h20_secure.h │ │ ├── nrf54h20_secure.svd │ │ ├── nrf54h20_secure_peripherals.h │ │ ├── nrf54h20_sysctrl.h │ │ ├── nrf54h20_sysctrl.svd │ │ ├── nrf54h20_sysctrl_peripherals.h │ │ ├── nrf54h20_types.h │ │ ├── nrf54h20_version.h │ │ ├── nrf54h20_xxaa_application_memory.h │ │ ├── nrf54h20_xxaa_flpr_memory.h │ │ ├── nrf54h20_xxaa_ppr_memory.h │ │ ├── nrf54h20_xxaa_radiocore_memory.h │ │ ├── nrf54h_erratas.h │ │ ├── nrf54l05.h │ │ ├── nrf54l05_application.h │ │ ├── nrf54l05_application.svd │ │ ├── nrf54l05_application_peripherals.h │ │ ├── nrf54l05_flpr.h │ │ ├── nrf54l05_flpr.svd │ │ ├── nrf54l05_flpr_peripherals.h │ │ ├── nrf54l05_global.h │ │ ├── nrf54l05_interim.h │ │ ├── nrf54l05_name_change.h │ │ ├── nrf54l05_peripherals.h │ │ ├── nrf54l05_types.h │ │ ├── nrf54l05_version.h │ │ ├── nrf54l05_xxaa_application_memory.h │ │ ├── nrf54l05_xxaa_flpr_memory.h │ │ ├── nrf54l10.h │ │ ├── nrf54l10_application.h │ │ ├── nrf54l10_application.svd │ │ ├── nrf54l10_application_peripherals.h │ │ ├── nrf54l10_flpr.h │ │ ├── nrf54l10_flpr.svd │ │ ├── nrf54l10_flpr_peripherals.h │ │ ├── nrf54l10_global.h │ │ ├── nrf54l10_interim.h │ │ ├── nrf54l10_name_change.h │ │ ├── nrf54l10_peripherals.h │ │ ├── nrf54l10_types.h │ │ ├── nrf54l10_version.h │ │ ├── nrf54l10_xxaa_application_memory.h │ │ ├── nrf54l10_xxaa_flpr_memory.h │ │ ├── nrf54l15.h │ │ ├── nrf54l15_application.h │ │ ├── nrf54l15_application.svd │ │ ├── nrf54l15_application_peripherals.h │ │ ├── nrf54l15_flpr.h │ │ ├── nrf54l15_flpr.svd │ │ ├── nrf54l15_flpr_peripherals.h │ │ ├── nrf54l15_global.h │ │ ├── nrf54l15_interim.h │ │ ├── nrf54l15_name_change.h │ │ ├── nrf54l15_peripherals.h │ │ ├── nrf54l15_types.h │ │ ├── nrf54l15_version.h │ │ ├── nrf54l15_xxaa_application_memory.h │ │ ├── nrf54l15_xxaa_flpr_memory.h │ │ ├── nrf54l_erratas.h │ │ ├── nrf54lm20a_enga.h │ │ ├── nrf54lm20a_enga_application.h │ │ ├── nrf54lm20a_enga_application.svd │ │ ├── nrf54lm20a_enga_application_peripherals.h │ │ ├── nrf54lm20a_enga_flpr.h │ │ ├── nrf54lm20a_enga_flpr.svd │ │ ├── nrf54lm20a_enga_flpr_peripherals.h │ │ ├── nrf54lm20a_enga_global.h │ │ ├── nrf54lm20a_enga_interim.h │ │ ├── nrf54lm20a_enga_name_change.h │ │ ├── nrf54lm20a_enga_peripherals.h │ │ ├── nrf54lm20a_enga_types.h │ │ ├── nrf54lm20a_enga_version.h │ │ ├── nrf54lm20a_enga_xxaa_application_memory.h │ │ ├── nrf54lm20a_enga_xxaa_flpr_memory.h │ │ ├── nrf54ls05b_enga.h │ │ ├── nrf54ls05b_enga_application.h │ │ ├── nrf54ls05b_enga_application.svd │ │ ├── nrf54ls05b_enga_application_peripherals.h │ │ ├── nrf54ls05b_enga_global.h │ │ ├── nrf54ls05b_enga_interim.h │ │ ├── nrf54ls05b_enga_name_change.h │ │ ├── nrf54ls05b_enga_peripherals.h │ │ ├── nrf54ls05b_enga_types.h │ │ ├── nrf54ls05b_enga_version.h │ │ ├── nrf54ls05b_enga_xxaa_application_memory.h │ │ ├── nrf54lv10a_enga.h │ │ ├── nrf54lv10a_enga_application.h │ │ ├── nrf54lv10a_enga_application.svd │ │ ├── nrf54lv10a_enga_application_peripherals.h │ │ ├── nrf54lv10a_enga_flpr.h │ │ ├── nrf54lv10a_enga_flpr.svd │ │ ├── nrf54lv10a_enga_flpr_peripherals.h │ │ ├── nrf54lv10a_enga_global.h │ │ ├── nrf54lv10a_enga_interim.h │ │ ├── nrf54lv10a_enga_name_change.h │ │ ├── nrf54lv10a_enga_peripherals.h │ │ ├── nrf54lv10a_enga_types.h │ │ ├── nrf54lv10a_enga_version.h │ │ ├── nrf54lv10a_enga_xxaa_application_memory.h │ │ ├── nrf54lv10a_enga_xxaa_flpr_memory.h │ │ ├── nrf7120_enga.h │ │ ├── nrf7120_enga_application.h │ │ ├── nrf7120_enga_application.svd │ │ ├── nrf7120_enga_application_peripherals.h │ │ ├── nrf7120_enga_flpr.h │ │ ├── nrf7120_enga_flpr.svd │ │ ├── nrf7120_enga_flpr_peripherals.h │ │ ├── nrf7120_enga_global.h │ │ ├── nrf7120_enga_interim.h │ │ ├── nrf7120_enga_lmac.h │ │ ├── nrf7120_enga_lmac.svd │ │ ├── nrf7120_enga_lmac_peripherals.h │ │ ├── nrf7120_enga_name_change.h │ │ ├── nrf7120_enga_peripherals.h │ │ ├── nrf7120_enga_types.h │ │ ├── nrf7120_enga_umac.h │ │ ├── nrf7120_enga_umac.svd │ │ ├── nrf7120_enga_umac_peripherals.h │ │ ├── nrf7120_enga_version.h │ │ ├── nrf7120_enga_wificore.h │ │ ├── nrf7120_enga_wificore.svd │ │ ├── nrf7120_enga_wificore_peripherals.h │ │ ├── nrf7120_enga_xxaa_application_memory.h │ │ ├── nrf7120_enga_xxaa_flpr_memory.h │ │ ├── nrf7120_enga_xxaa_lmac_memory.h │ │ ├── nrf7120_enga_xxaa_umac_memory.h │ │ ├── nrf9120.h │ │ ├── nrf9120.svd │ │ ├── nrf9120_bitfields.h │ │ ├── nrf9120_peripherals.h │ │ ├── nrf9120_xxaa_memory.h │ │ ├── nrf9160.h │ │ ├── nrf9160.svd │ │ ├── nrf9160_bitfields.h │ │ ├── nrf9160_name_change.h │ │ ├── nrf9160_peripherals.h │ │ ├── nrf9160_xxaa_memory.h │ │ ├── nrf91_erratas.h │ │ ├── nrf91_name_change.h │ │ ├── nrf9230_engb.h │ │ ├── nrf9230_engb_application.h │ │ ├── nrf9230_engb_application.svd │ │ ├── nrf9230_engb_application_peripherals.h │ │ ├── nrf9230_engb_flpr.h │ │ ├── nrf9230_engb_flpr.svd │ │ ├── nrf9230_engb_flpr_peripherals.h │ │ ├── nrf9230_engb_global.h │ │ ├── nrf9230_engb_interim.h │ │ ├── nrf9230_engb_name_change.h │ │ ├── nrf9230_engb_peripherals.h │ │ ├── nrf9230_engb_ppr.h │ │ ├── nrf9230_engb_ppr.svd │ │ ├── nrf9230_engb_ppr_peripherals.h │ │ ├── nrf9230_engb_radiocore.h │ │ ├── nrf9230_engb_radiocore.svd │ │ ├── nrf9230_engb_radiocore_peripherals.h │ │ ├── nrf9230_engb_types.h │ │ ├── nrf9230_engb_version.h │ │ ├── nrf9230_engb_xxaa_application_memory.h │ │ ├── nrf9230_engb_xxaa_flpr_memory.h │ │ ├── nrf9230_engb_xxaa_ppr_memory.h │ │ ├── nrf9230_engb_xxaa_radiocore_memory.h │ │ ├── nrf_erratas.h │ │ ├── nrf_mem.h │ │ ├── nrf_peripherals.h │ │ ├── riscv_encoding.h │ │ ├── system_config_sau.h │ │ ├── system_nrf.h │ │ ├── system_nrf51.c │ │ ├── system_nrf51.h │ │ ├── system_nrf52.c │ │ ├── system_nrf52.h │ │ ├── system_nrf52805.c │ │ ├── system_nrf52805.h │ │ ├── system_nrf52810.c │ │ ├── system_nrf52810.h │ │ ├── system_nrf52811.c │ │ ├── system_nrf52811.h │ │ ├── system_nrf52820.c │ │ ├── system_nrf52820.h │ │ ├── system_nrf52833.c │ │ ├── system_nrf52833.h │ │ ├── system_nrf52840.c │ │ ├── system_nrf52840.h │ │ ├── system_nrf52_approtect.h │ │ ├── system_nrf53.h │ │ ├── system_nrf5340_application.c │ │ ├── system_nrf5340_application.h │ │ ├── system_nrf5340_network.c │ │ ├── system_nrf5340_network.h │ │ ├── system_nrf53_approtect.h │ │ ├── system_nrf54h.c │ │ ├── system_nrf54h.h │ │ ├── system_nrf54l.c │ │ ├── system_nrf54l.h │ │ ├── system_nrf54l_approtect.h │ │ ├── system_nrf7120_enga.c │ │ ├── system_nrf7120_enga.h │ │ ├── system_nrf7120_enga_approtect.h │ │ ├── system_nrf91.c │ │ ├── system_nrf91.h │ │ ├── system_nrf9120.h │ │ ├── system_nrf9160.c │ │ ├── system_nrf9160.h │ │ ├── system_nrf91_approtect.h │ │ ├── system_nrf92.c │ │ └── system_nrf92.h │ │ ├── nrfx_bsp.h │ │ ├── nrfx_ext.h │ │ ├── soc │ │ ├── interconnect │ │ │ ├── ipct │ │ │ │ ├── nrfx_interconnect_apb_haltium_ext.h │ │ │ │ └── nrfx_interconnect_ipct_haltium_ext.h │ │ │ ├── nrfx_gppi_lumos.c │ │ │ └── nrfx_gppi_lumos.h │ │ ├── irqs │ │ │ ├── nrfx_irqs_nrf51.h │ │ │ ├── nrfx_irqs_nrf52805.h │ │ │ ├── nrfx_irqs_nrf52810.h │ │ │ ├── nrfx_irqs_nrf52811.h │ │ │ ├── nrfx_irqs_nrf52820.h │ │ │ ├── nrfx_irqs_nrf52832.h │ │ │ ├── nrfx_irqs_nrf52833.h │ │ │ ├── nrfx_irqs_nrf52840.h │ │ │ ├── nrfx_irqs_nrf5340_application.h │ │ │ ├── nrfx_irqs_nrf5340_network.h │ │ │ ├── nrfx_irqs_nrf54h20_application.h │ │ │ ├── nrfx_irqs_nrf54h20_flpr.h │ │ │ ├── nrfx_irqs_nrf54h20_ppr.h │ │ │ ├── nrfx_irqs_nrf54h20_radiocore.h │ │ │ ├── nrfx_irqs_nrf54l05_application.h │ │ │ ├── nrfx_irqs_nrf54l05_flpr.h │ │ │ ├── nrfx_irqs_nrf54l10_application.h │ │ │ ├── nrfx_irqs_nrf54l10_flpr.h │ │ │ ├── nrfx_irqs_nrf54l15_application.h │ │ │ ├── nrfx_irqs_nrf54l15_flpr.h │ │ │ ├── nrfx_irqs_nrf54lm20a_enga_application.h │ │ │ ├── nrfx_irqs_nrf54lm20a_enga_flpr.h │ │ │ ├── nrfx_irqs_nrf54ls05b_enga_application.h │ │ │ ├── nrfx_irqs_nrf54lv10a_enga_application.h │ │ │ ├── nrfx_irqs_nrf54lv10a_enga_flpr.h │ │ │ ├── nrfx_irqs_nrf7120_enga_application.h │ │ │ ├── nrfx_irqs_nrf7120_enga_flpr.h │ │ │ ├── nrfx_irqs_nrf91.h │ │ │ ├── nrfx_irqs_nrf9230_engb_application.h │ │ │ ├── nrfx_irqs_nrf9230_engb_flpr.h │ │ │ ├── nrfx_irqs_nrf9230_engb_ppr.h │ │ │ └── nrfx_irqs_nrf9230_engb_radiocore.h │ │ ├── nrfx_irqs.h │ │ ├── nrfx_irqs_ext.h │ │ ├── nrfx_mdk_fixups.h │ │ ├── nrfx_mdk_fixups_ext.h │ │ └── nrfx_soc_defines.h │ │ └── templates │ │ ├── nrfx_config_ext.h │ │ ├── nrfx_config_nrf51.h │ │ ├── nrfx_config_nrf52805.h │ │ ├── nrfx_config_nrf52810.h │ │ ├── nrfx_config_nrf52811.h │ │ ├── nrfx_config_nrf52820.h │ │ ├── nrfx_config_nrf52832.h │ │ ├── nrfx_config_nrf52833.h │ │ ├── nrfx_config_nrf52840.h │ │ ├── nrfx_config_nrf5340_application.h │ │ ├── nrfx_config_nrf5340_network.h │ │ ├── nrfx_config_nrf54h20_application.h │ │ ├── nrfx_config_nrf54h20_flpr.h │ │ ├── nrfx_config_nrf54h20_ppr.h │ │ ├── nrfx_config_nrf54h20_radiocore.h │ │ ├── nrfx_config_nrf54l05_application.h │ │ ├── nrfx_config_nrf54l05_flpr.h │ │ ├── nrfx_config_nrf54l10_application.h │ │ ├── nrfx_config_nrf54l10_flpr.h │ │ ├── nrfx_config_nrf54l15_application.h │ │ ├── nrfx_config_nrf54l15_flpr.h │ │ ├── nrfx_config_nrf54lm20a_enga_application.h │ │ ├── nrfx_config_nrf54lm20a_enga_flpr.h │ │ ├── nrfx_config_nrf54ls05b_enga_application.h │ │ ├── nrfx_config_nrf54lv10a_enga_application.h │ │ ├── nrfx_config_nrf54lv10a_enga_flpr.h │ │ ├── nrfx_config_nrf7120_enga_application.h │ │ ├── nrfx_config_nrf7120_enga_flpr.h │ │ ├── nrfx_config_nrf91.h │ │ ├── nrfx_config_nrf9230_engb_application.h │ │ ├── nrfx_config_nrf9230_engb_flpr.h │ │ ├── nrfx_config_nrf9230_engb_ppr.h │ │ ├── nrfx_config_nrf9230_engb_radiocore.h │ │ └── nrfx_templates_config.h ├── doc │ ├── README.md │ ├── buildfiles │ │ ├── extra_stylesheet.css │ │ ├── favicon.ico │ │ ├── footer.html │ │ ├── header.html │ │ ├── layout.xml │ │ └── nordic_small.png │ ├── config_dox │ │ ├── nrfx_adc_dox_config.h │ │ ├── nrfx_clock_dox_config.h │ │ ├── nrfx_common_dox_config.h │ │ ├── nrfx_comp_dox_config.h │ │ ├── nrfx_gpiote_dox_config.h │ │ ├── nrfx_i2s_dox_config.h │ │ ├── nrfx_lpcomp_dox_config.h │ │ ├── nrfx_nfct_dox_config.h │ │ ├── nrfx_pdm_dox_config.h │ │ ├── nrfx_power_dox_config.h │ │ ├── nrfx_prs_dox_config.h │ │ ├── nrfx_pwm_dox_config.h │ │ ├── nrfx_qdec_dox_config.h │ │ ├── nrfx_qspi_dox_config.h │ │ ├── nrfx_rng_dox_config.h │ │ ├── nrfx_rtc_dox_config.h │ │ ├── nrfx_saadc_dox_config.h │ │ ├── nrfx_spi_dox_config.h │ │ ├── nrfx_spim_dox_config.h │ │ ├── nrfx_spis_dox_config.h │ │ ├── nrfx_systick_dox_config.h │ │ ├── nrfx_timer_dox_config.h │ │ ├── nrfx_twi_dox_config.h │ │ ├── nrfx_twim_dox_config.h │ │ ├── nrfx_twis_dox_config.h │ │ ├── nrfx_uart_dox_config.h │ │ ├── nrfx_uarte_dox_config.h │ │ ├── nrfx_usbd_dox_config.h │ │ └── nrfx_wdt_dox_config.h │ ├── drv_supp_matrix.dox │ ├── errata.dox │ ├── generate_html_doc.bat │ ├── generate_html_doc.sh │ ├── main_page.dox │ ├── nrf52805.dox │ ├── nrf52810.dox │ ├── nrf52820.dox │ ├── nrf52832.dox │ ├── nrf52833.dox │ ├── nrf52840.dox │ ├── nrf5340.dox │ ├── nrf54h20.dox │ ├── nrf54l05.dox │ ├── nrf54l10.dox │ ├── nrf54l15.dox │ ├── nrf54lm20a_enga.dox │ ├── nrf54lv10a_enga.dox │ ├── nrf7120_enga.dox │ ├── nrf91_series.dox │ ├── nrfx.doxyfile │ ├── nrfx_4_0_migration_guide.md │ └── nrfx_api.dox ├── drivers │ ├── include │ │ ├── nrf_bitmask.h │ │ ├── nrfx_adc.h │ │ ├── nrfx_bellboard.h │ │ ├── nrfx_clock.h │ │ ├── nrfx_clock_hfclk.h │ │ ├── nrfx_clock_hfclk192m.h │ │ ├── nrfx_clock_hfclkaudio.h │ │ ├── nrfx_clock_lfclk.h │ │ ├── nrfx_clock_xo.h │ │ ├── nrfx_clock_xo24m.h │ │ ├── nrfx_comp.h │ │ ├── nrfx_cracen.h │ │ ├── nrfx_egu.h │ │ ├── nrfx_gpiote.h │ │ ├── nrfx_grtc.h │ │ ├── nrfx_i2s.h │ │ ├── nrfx_ipc.h │ │ ├── nrfx_lpcomp.h │ │ ├── nrfx_mramc.h │ │ ├── nrfx_nfct.h │ │ ├── nrfx_nvmc.h │ │ ├── nrfx_pdm.h │ │ ├── nrfx_power.h │ │ ├── nrfx_power_clock.h │ │ ├── nrfx_power_compat.h │ │ ├── nrfx_pwm.h │ │ ├── nrfx_qdec.h │ │ ├── nrfx_qspi.h │ │ ├── nrfx_rng.h │ │ ├── nrfx_rramc.h │ │ ├── nrfx_rtc.h │ │ ├── nrfx_saadc.h │ │ ├── nrfx_spi.h │ │ ├── nrfx_spim.h │ │ ├── nrfx_spis.h │ │ ├── nrfx_systick.h │ │ ├── nrfx_tbm.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_vevif.h │ │ └── nrfx_wdt.h │ ├── nrfx_common.h │ ├── nrfx_errata.h │ ├── nrfx_errors.h │ ├── nrfx_utils.h │ ├── nrfx_utils_internal.h │ └── src │ │ ├── nrfx_adc.c │ │ ├── nrfx_bellboard.c │ │ ├── nrfx_clock.c │ │ ├── nrfx_clock_hfclk.c │ │ ├── nrfx_clock_hfclk192m.c │ │ ├── nrfx_clock_hfclkaudio.c │ │ ├── nrfx_clock_lfclk.c │ │ ├── nrfx_clock_xo.c │ │ ├── nrfx_clock_xo24m.c │ │ ├── nrfx_comp.c │ │ ├── nrfx_comp_common.h │ │ ├── nrfx_cracen.c │ │ ├── nrfx_egu.c │ │ ├── nrfx_gpiote.c │ │ ├── nrfx_grtc.c │ │ ├── nrfx_i2s.c │ │ ├── nrfx_ipc.c │ │ ├── nrfx_lpcomp.c │ │ ├── nrfx_lpcomp_common.h │ │ ├── nrfx_mramc.c │ │ ├── nrfx_nfct.c │ │ ├── nrfx_nvmc.c │ │ ├── nrfx_pdm.c │ │ ├── nrfx_power.c │ │ ├── nrfx_pwm.c │ │ ├── nrfx_qdec.c │ │ ├── nrfx_qspi.c │ │ ├── nrfx_rng.c │ │ ├── nrfx_rramc.c │ │ ├── nrfx_rtc.c │ │ ├── nrfx_saadc.c │ │ ├── nrfx_saadc_common.h │ │ ├── nrfx_spi.c │ │ ├── nrfx_spim.c │ │ ├── nrfx_spis.c │ │ ├── nrfx_systick.c │ │ ├── nrfx_tbm.c │ │ ├── nrfx_temp.c │ │ ├── nrfx_timer.c │ │ ├── nrfx_twi.c │ │ ├── nrfx_twi_twim.c │ │ ├── nrfx_twim.c │ │ ├── nrfx_twis.c │ │ ├── nrfx_uart.c │ │ ├── nrfx_uarte.c │ │ ├── nrfx_usbd.c │ │ ├── nrfx_usbd_errata.h │ │ ├── nrfx_usbreg.c │ │ ├── nrfx_vevif.c │ │ ├── nrfx_wdt.c │ │ └── prs │ │ ├── nrfx_prs.c │ │ └── nrfx_prs.h ├── hal │ ├── nrf_aar.h │ ├── nrf_acl.h │ ├── nrf_adc.h │ ├── nrf_auxpll.h │ ├── nrf_bellboard.h │ ├── nrf_bicr.h │ ├── nrf_bprot.h │ ├── nrf_cache.h │ ├── nrf_ccm.h │ ├── nrf_clock.h │ ├── nrf_common.h │ ├── nrf_comp.h │ ├── nrf_cracen.h │ ├── nrf_cracen_cm.h │ ├── nrf_cracen_rng.h │ ├── nrf_ctrlap.h │ ├── nrf_dcnf.h │ ├── nrf_dppi.h │ ├── nrf_ecb.h │ ├── nrf_egu.h │ ├── nrf_exmif.h │ ├── nrf_ficr.h │ ├── nrf_fpu.h │ ├── nrf_glitchdet.h │ ├── nrf_gpio.h │ ├── nrf_gpiote.h │ ├── nrf_grtc.h │ ├── nrf_hsfll.h │ ├── nrf_i2s.h │ ├── nrf_ipc.h │ ├── nrf_ipct.h │ ├── nrf_kmu.h │ ├── nrf_lfrc.h │ ├── nrf_lfxo.h │ ├── nrf_lpcomp.h │ ├── nrf_lrcconf.h │ ├── nrf_memconf.h │ ├── nrf_mpc.h │ ├── nrf_mpu.h │ ├── nrf_mramc.h │ ├── nrf_mutex.h │ ├── nrf_mvdma.h │ ├── nrf_mwu.h │ ├── nrf_nfct.h │ ├── nrf_nvmc.h │ ├── nrf_oscillators.h │ ├── nrf_pdm.h │ ├── nrf_power.h │ ├── nrf_ppi.h │ ├── nrf_ppib.h │ ├── nrf_pwm.h │ ├── nrf_qdec.h │ ├── nrf_qspi.h │ ├── nrf_radio.h │ ├── nrf_ramc.h │ ├── nrf_regulators.h │ ├── nrf_reset.h │ ├── nrf_resetinfo.h │ ├── nrf_rng.h │ ├── nrf_rramc.h │ ├── nrf_rtc.h │ ├── nrf_saadc.h │ ├── nrf_spi.h │ ├── nrf_spim.h │ ├── nrf_spis.h │ ├── nrf_spu.h │ ├── nrf_stm.h │ ├── nrf_systick.h │ ├── nrf_tampc.h │ ├── nrf_tbm.h │ ├── nrf_tddconf.h │ ├── nrf_tdm.h │ ├── nrf_temp.h │ ├── nrf_timer.h │ ├── nrf_twi.h │ ├── nrf_twim.h │ ├── nrf_twis.h │ ├── nrf_uart.h │ ├── nrf_uarte.h │ ├── nrf_uicr.h │ ├── nrf_usbd.h │ ├── nrf_usbhs.h │ ├── nrf_usbreg.h │ ├── nrf_vmc.h │ ├── nrf_vpr.h │ ├── nrf_vpr_clic.h │ ├── nrf_vpr_csr.h │ ├── nrf_vpr_csr_vevif.h │ ├── nrf_vpr_csr_vio.h │ ├── nrf_vpr_csr_vtim.h │ ├── nrf_vreqctrl.h │ └── nrf_wdt.h ├── haly │ ├── nrfy_bellboard.h │ ├── nrfy_common.h │ ├── nrfy_comp.h │ ├── nrfy_dppi.h │ ├── nrfy_gpio.h │ ├── nrfy_gpiote.h │ ├── nrfy_grtc.h │ ├── nrfy_i2s.h │ ├── nrfy_lpcomp.h │ ├── nrfy_mramc.h │ ├── nrfy_mvdma.h │ ├── nrfy_nfct.h │ ├── nrfy_pdm.h │ ├── nrfy_pwm.h │ ├── nrfy_qdec.h │ ├── nrfy_rramc.h │ ├── nrfy_rtc.h │ ├── nrfy_saadc.h │ ├── nrfy_spim.h │ ├── nrfy_tbm.h │ ├── nrfy_temp.h │ ├── nrfy_timer.h │ ├── nrfy_twim.h │ ├── nrfy_uarte.h │ ├── nrfy_vpr.h │ └── nrfy_wdt.h ├── helpers │ ├── internal │ │ ├── nrfx_gppiv1.h │ │ ├── nrfx_gppiv1_ipct.c │ │ ├── nrfx_gppiv1_shim.c │ │ ├── nrfx_interconnect_apb_haltium_application.h │ │ ├── nrfx_interconnect_apb_haltium_flpr.h │ │ ├── nrfx_interconnect_apb_haltium_global.h │ │ ├── nrfx_interconnect_apb_haltium_ppr.h │ │ ├── nrfx_interconnect_apb_haltium_radiocore.h │ │ ├── nrfx_interconnect_ipct.h │ │ ├── nrfx_interconnect_ipct_haltium_application.h │ │ ├── nrfx_interconnect_ipct_haltium_flpr.h │ │ ├── nrfx_interconnect_ipct_haltium_global.h │ │ ├── nrfx_interconnect_ipct_haltium_ppr.h │ │ └── nrfx_interconnect_ipct_haltium_radiocore.h │ ├── nrf_cracen_cm_dma.h │ ├── nrf_vdma.h │ ├── nrfx_analog_common.h │ ├── nrfx_flag32_allocator.c │ ├── nrfx_flag32_allocator.h │ ├── nrfx_gppi.h │ ├── nrfx_gppi_dppi.c │ ├── nrfx_gppi_ppi.c │ ├── nrfx_gppi_routes.h │ ├── nrfx_ids.h │ ├── nrfx_ram_ctrl.c │ ├── nrfx_ram_ctrl.h │ └── nrfx_reset_reason.h ├── lib │ └── nrfx_coredep.h ├── nrfx.h ├── samples │ ├── CHANGELOG.md │ ├── common │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833_config.h │ │ │ ├── nrf52840dk_nrf52840_config.h │ │ │ ├── nrf52dk_nrf52832_config.h │ │ │ ├── nrf5340dk_nrf5340_config.h │ │ │ ├── nrf54l15dk_nrf54l15_config.h │ │ │ └── nrf9160dk_nrf9160_config.h │ │ ├── common-pinctrl.dtsi │ │ ├── common.cmake │ │ ├── common.conf │ │ └── nrfx_example.h │ ├── doc │ │ ├── README.md │ │ ├── buildfiles │ │ │ ├── extra_stylesheet.css │ │ │ ├── favicon.ico │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── layout.xml │ │ │ └── nordic_small.png │ │ ├── generate_html_doc.bat │ │ ├── generate_html_doc.sh │ │ ├── images │ │ │ ├── pwm_common_desc.gif │ │ │ └── pwm_grouped_desc.gif │ │ ├── nrfx_examples.doxyfile │ │ └── nrfx_examples_descriptions.dox │ └── src │ │ ├── README.md │ │ ├── nrfx_cracen │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── boards │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── main.c │ │ ├── prj.conf │ │ └── sample.yaml │ │ ├── nrfx_egu │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ └── nrf9160dk_nrf9160.overlay │ │ ├── main.c │ │ ├── prj.conf │ │ └── sample.yaml │ │ ├── nrfx_gppi │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ └── nrf9160dk_nrf9160.overlay │ │ ├── fork │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ └── one_to_one │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── nrfx_pwm │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ └── nrf9160dk_nrf9160.overlay │ │ ├── common_mode │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ └── grouped_mode │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── nrfx_rng │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ └── nrf5340dk_nrf5340_cpunet.overlay │ │ ├── main.c │ │ ├── prj.conf │ │ └── sample.yaml │ │ ├── nrfx_saadc │ │ ├── advanced_blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── advanced_non_blocking_internal_timer │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ └── nrf9160dk_nrf9160.overlay │ │ ├── common │ │ │ ├── saadc_examples_common.c │ │ │ └── saadc_examples_common.h │ │ ├── maximum_performance │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── simple_blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ └── simple_non_blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── nrfx_spim │ │ ├── blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ └── nrf9160dk_nrf9160.overlay │ │ └── non_blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── nrfx_spim_spis │ │ ├── advanced_non_blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ └── nrf9160dk_nrf9160.overlay │ │ └── non_blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── nrfx_temp │ │ ├── blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpunet.overlay │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ └── non_blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── nrfx_timer │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ └── nrf9160dk_nrf9160.overlay │ │ ├── counter │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ └── timer │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── nrfx_twim_twis │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ └── nrf9160dk_nrf9160.overlay │ │ ├── tx_rx_blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── tx_rx_non_blocking │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ ├── txrx │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ └── txtx │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ └── nrfx_uarte │ │ ├── boards │ │ ├── nrf52833dk_nrf52833.overlay │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ └── nrf9160dk_nrf9160.overlay │ │ ├── rx_double_buffered │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── main.c │ │ ├── prj.conf │ │ └── sample.yaml │ │ └── tx_rx_non_blocking │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── main.c │ │ ├── prj.conf │ │ └── sample.yaml └── templates │ ├── nrfx_config_common.h │ ├── nrfx_glue.h │ └── nrfx_log.h ├── utils ├── gen_offsets.py ├── generate.sh ├── module.yml.j2 └── update_blobs.py └── zephyr ├── LICENSE.txt └── module.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /drivers/nrf_wifi/doc_build 2 | /zephyr/blobs 3 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /drivers/nrf_802154/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/nrf_802154/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/LICENSE -------------------------------------------------------------------------------- /drivers/nrf_802154/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/common/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/nrf_802154/common/include/nrf_802154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/common/include/nrf_802154.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_aes_ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_aes_ccm.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_co.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_co.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_core.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_core.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_debug.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_debug.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_encrypt.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_pib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_pib.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_pib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_pib.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_queue.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_queue.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_rssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_rssi.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_rssi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_rssi.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_stats.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_stats.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_swi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_swi.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_swi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_swi.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_trx.c -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_trx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_trx.h -------------------------------------------------------------------------------- /drivers/nrf_802154/driver/src/nrf_802154_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/driver/src/nrf_802154_utils.h -------------------------------------------------------------------------------- /drivers/nrf_802154/serialization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/serialization/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/nrf_802154/sl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/sl/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/nrf_802154/sl/include/nrf_802154_fal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/sl/include/nrf_802154_fal.h -------------------------------------------------------------------------------- /drivers/nrf_802154/sl/include/nrf_802154_sl_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/drivers/nrf_802154/sl/include/nrf_802154_sl_log.h -------------------------------------------------------------------------------- /nrfs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/CHANGELOG.md -------------------------------------------------------------------------------- /nrfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/README.md -------------------------------------------------------------------------------- /nrfs/helpers/dvfs_oppoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/helpers/dvfs_oppoint.c -------------------------------------------------------------------------------- /nrfs/helpers/dvfs_oppoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/helpers/dvfs_oppoint.h -------------------------------------------------------------------------------- /nrfs/include/internal/nrfs_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/nrfs_backend.h -------------------------------------------------------------------------------- /nrfs/include/internal/nrfs_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/nrfs_callbacks.h -------------------------------------------------------------------------------- /nrfs/include/internal/nrfs_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/nrfs_ctx.h -------------------------------------------------------------------------------- /nrfs/include/internal/nrfs_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/nrfs_dispatcher.h -------------------------------------------------------------------------------- /nrfs/include/internal/nrfs_hdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/nrfs_hdr.h -------------------------------------------------------------------------------- /nrfs/include/internal/nrfs_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/nrfs_phy.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_clock_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_clock_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_diag_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_diag_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_dvfs_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_dvfs_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_gdfs_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_gdfs_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_gdpwr_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_gdpwr_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_mram_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_mram_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_pmic_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_pmic_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_reqs_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_reqs_common.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_reset_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_reset_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_swext_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_swext_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_temp_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_temp_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/requests/nrfs_usb_reqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/requests/nrfs_usb_reqs.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_audiopll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_audiopll.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_clock.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_diag.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_dvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_dvfs.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_gdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_gdfs.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_gdpwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_gdpwr.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_generic.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_mram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_mram.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_pmic.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_reset.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_swext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_swext.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_temp.h -------------------------------------------------------------------------------- /nrfs/include/internal/services/nrfs_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/internal/services/nrfs_usb.h -------------------------------------------------------------------------------- /nrfs/include/nrfs_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/nrfs_common.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_audiopll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_audiopll.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_clock.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_diag.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_dvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_dvfs.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_gdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_gdfs.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_gdpwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_gdpwr.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_mram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_mram.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_pmic.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_reset.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_swext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_swext.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_temp.h -------------------------------------------------------------------------------- /nrfs/include/services/nrfs_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/include/services/nrfs_usb.h -------------------------------------------------------------------------------- /nrfs/src/internal/nrfs_dispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/internal/nrfs_dispatcher.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_audiopll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_audiopll.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_clock.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_diag.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_dvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_dvfs.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_gdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_gdfs.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_gdpwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_gdpwr.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_mram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_mram.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_pmic.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_reset.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_swext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_swext.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_temp.c -------------------------------------------------------------------------------- /nrfs/src/services/nrfs_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfs/src/services/nrfs_usb.c -------------------------------------------------------------------------------- /nrfx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/CHANGELOG.md -------------------------------------------------------------------------------- /nrfx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/README -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/compiler_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/compiler_abstraction.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/core_vpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/core_vpr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/haltium_interim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/haltium_interim.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51422_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51422_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51422_xxab_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51422_xxab_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51422_xxac_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51422_xxac_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51801_xxab_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51801_xxab_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51802_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51802_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51822_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51822_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51822_xxab_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51822_xxab_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51822_xxac_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51822_xxac_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51824_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51824_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51_deprecated.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51_erratas.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51_to_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51_to_nrf52.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51_to_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51_to_nrf52810.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf51_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf51_to_nrf52840.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52805.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52805.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52805.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52805_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52805_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52805_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52805_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52805_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52805_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52810.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52810.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52810.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52810_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52810_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52810_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52810_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52810_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52810_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52810_to_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52810_to_nrf52811.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52810_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52810_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52811.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52811.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52811.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52811_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52811_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52811_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52811_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52811_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52811_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52820.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52820.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52820.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52820_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52820_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52820_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52820_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52820_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52820_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52832_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52832_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52832_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52832_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52832_xxab_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52832_xxab_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52833.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52833.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52833.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52833_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52833_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52833_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52833_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52833_to_nrf52820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52833_to_nrf52820.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52833_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52833_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52840.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52840.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52840.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52840_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52840_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52840_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52840_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52840_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52840_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52840_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52840_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52_erratas.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52_to_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52_to_nrf52810.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52_to_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52_to_nrf52833.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf52_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf52_to_nrf52840.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf5340_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf5340_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf5340_application.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf5340_application.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf5340_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf5340_network.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf5340_network.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf5340_network.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf5340_network_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf5340_network_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf5340_network_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf5340_network_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf5340_network_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf5340_network_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf5340_xxaa_network_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf5340_xxaa_network_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf53_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf53_erratas.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_application.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_application.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_flpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_flpr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_flpr.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_flpr.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_flpr_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_flpr_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_global.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_interim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_interim.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_ppr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_ppr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_ppr.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_ppr.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_ppr_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_ppr_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_radiocore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_radiocore.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_radiocore.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_radiocore.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_secure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_secure.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_secure.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_secure.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_secure_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_secure_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_sysctrl.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_sysctrl.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_sysctrl.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_types.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_version.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_xxaa_flpr_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_xxaa_flpr_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h20_xxaa_ppr_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h20_xxaa_ppr_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54h_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54h_erratas.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_application.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_application.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_flpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_flpr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_flpr.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_flpr.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_flpr_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_flpr_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_global.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_interim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_interim.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_types.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_version.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l05_xxaa_flpr_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l05_xxaa_flpr_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_application.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_application.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_flpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_flpr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_flpr.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_flpr.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_flpr_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_flpr_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_global.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_interim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_interim.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_types.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_version.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l10_xxaa_flpr_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l10_xxaa_flpr_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_application.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_application.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_flpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_flpr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_flpr.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_flpr.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_flpr_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_flpr_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_global.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_interim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_interim.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_types.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_version.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l15_xxaa_flpr_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l15_xxaa_flpr_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54l_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54l_erratas.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lm20a_enga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lm20a_enga.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lm20a_enga_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lm20a_enga_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lm20a_enga_flpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lm20a_enga_flpr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lm20a_enga_flpr.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lm20a_enga_flpr.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lm20a_enga_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lm20a_enga_global.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lm20a_enga_interim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lm20a_enga_interim.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lm20a_enga_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lm20a_enga_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lm20a_enga_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lm20a_enga_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lm20a_enga_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lm20a_enga_types.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lm20a_enga_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lm20a_enga_version.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54ls05b_enga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54ls05b_enga.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54ls05b_enga_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54ls05b_enga_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54ls05b_enga_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54ls05b_enga_global.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54ls05b_enga_interim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54ls05b_enga_interim.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54ls05b_enga_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54ls05b_enga_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54ls05b_enga_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54ls05b_enga_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54ls05b_enga_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54ls05b_enga_types.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54ls05b_enga_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54ls05b_enga_version.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lv10a_enga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lv10a_enga.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lv10a_enga_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lv10a_enga_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lv10a_enga_flpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lv10a_enga_flpr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lv10a_enga_flpr.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lv10a_enga_flpr.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lv10a_enga_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lv10a_enga_global.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lv10a_enga_interim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lv10a_enga_interim.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lv10a_enga_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lv10a_enga_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lv10a_enga_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lv10a_enga_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lv10a_enga_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lv10a_enga_types.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf54lv10a_enga_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf54lv10a_enga_version.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_application.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_application.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_flpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_flpr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_flpr.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_flpr.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_global.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_interim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_interim.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_lmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_lmac.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_lmac.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_lmac.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_types.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_umac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_umac.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_umac.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_umac.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_version.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_wificore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_wificore.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf7120_enga_wificore.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf7120_enga_wificore.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9120.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9120.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9120.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9120_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9120_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9120_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9120_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9120_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9120_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9160.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9160.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9160.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9160_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9160_bitfields.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9160_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9160_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9160_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9160_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9160_xxaa_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9160_xxaa_memory.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf91_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf91_erratas.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf91_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf91_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_application.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_application.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_flpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_flpr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_flpr.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_flpr.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_global.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_interim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_interim.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_name_change.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_ppr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_ppr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_ppr.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_ppr.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_radiocore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_radiocore.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_radiocore.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_radiocore.svd -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_types.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf9230_engb_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf9230_engb_version.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf_erratas.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf_mem.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/nrf_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/nrf_peripherals.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/riscv_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/riscv_encoding.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_config_sau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_config_sau.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf51.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf51.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52805.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52805.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52805.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52810.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52810.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52810.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52811.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52811.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52811.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52820.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52820.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52820.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52833.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52833.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52833.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52840.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52840.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf52_approtect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf52_approtect.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf53.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf53.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf5340_application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf5340_application.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf5340_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf5340_application.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf5340_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf5340_network.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf5340_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf5340_network.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf53_approtect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf53_approtect.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf54h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf54h.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf54h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf54h.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf54l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf54l.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf54l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf54l.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf54l_approtect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf54l_approtect.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf7120_enga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf7120_enga.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf7120_enga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf7120_enga.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf91.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf91.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf91.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf91.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf9120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf9120.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf9160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf9160.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf9160.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf91_approtect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf91_approtect.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf92.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf92.c -------------------------------------------------------------------------------- /nrfx/bsp/stable/mdk/system_nrf92.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/mdk/system_nrf92.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/nrfx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/nrfx_bsp.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/nrfx_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/nrfx_ext.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf51.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52805.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52810.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52811.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52820.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52832.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52832.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52833.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf52840.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf54h20_ppr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf54h20_ppr.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf91.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/irqs/nrfx_irqs_nrf91.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/nrfx_irqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/nrfx_irqs.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/nrfx_irqs_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/nrfx_irqs_ext.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/nrfx_mdk_fixups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/nrfx_mdk_fixups.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/nrfx_mdk_fixups_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/nrfx_mdk_fixups_ext.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/soc/nrfx_soc_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/soc/nrfx_soc_defines.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_config_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_config_ext.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_config_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_config_nrf51.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_config_nrf52805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_config_nrf52805.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_config_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_config_nrf52810.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_config_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_config_nrf52811.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_config_nrf52820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_config_nrf52820.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_config_nrf52832.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_config_nrf52832.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_config_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_config_nrf52833.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_config_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_config_nrf52840.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_config_nrf91.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_config_nrf91.h -------------------------------------------------------------------------------- /nrfx/bsp/stable/templates/nrfx_templates_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/bsp/stable/templates/nrfx_templates_config.h -------------------------------------------------------------------------------- /nrfx/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/README.md -------------------------------------------------------------------------------- /nrfx/doc/buildfiles/extra_stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/buildfiles/extra_stylesheet.css -------------------------------------------------------------------------------- /nrfx/doc/buildfiles/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/buildfiles/favicon.ico -------------------------------------------------------------------------------- /nrfx/doc/buildfiles/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/buildfiles/footer.html -------------------------------------------------------------------------------- /nrfx/doc/buildfiles/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/buildfiles/header.html -------------------------------------------------------------------------------- /nrfx/doc/buildfiles/layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/buildfiles/layout.xml -------------------------------------------------------------------------------- /nrfx/doc/buildfiles/nordic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/buildfiles/nordic_small.png -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_adc_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_adc_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_clock_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_clock_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_common_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_common_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_comp_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_comp_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_gpiote_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_gpiote_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_i2s_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_i2s_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_lpcomp_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_lpcomp_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_nfct_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_nfct_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_pdm_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_pdm_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_power_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_power_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_prs_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_prs_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_pwm_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_pwm_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_qdec_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_qdec_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_qspi_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_qspi_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_rng_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_rng_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_rtc_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_rtc_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_saadc_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_saadc_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_spi_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_spi_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_spim_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_spim_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_spis_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_spis_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_systick_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_systick_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_timer_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_timer_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_twi_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_twi_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_twim_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_twim_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_twis_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_twis_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_uart_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_uart_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_uarte_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_uarte_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_usbd_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_usbd_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/config_dox/nrfx_wdt_dox_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/config_dox/nrfx_wdt_dox_config.h -------------------------------------------------------------------------------- /nrfx/doc/drv_supp_matrix.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/drv_supp_matrix.dox -------------------------------------------------------------------------------- /nrfx/doc/errata.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/errata.dox -------------------------------------------------------------------------------- /nrfx/doc/generate_html_doc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/generate_html_doc.bat -------------------------------------------------------------------------------- /nrfx/doc/generate_html_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/generate_html_doc.sh -------------------------------------------------------------------------------- /nrfx/doc/main_page.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/main_page.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf52805.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf52805.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf52810.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf52810.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf52820.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf52820.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf52832.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf52832.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf52833.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf52833.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf52840.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf52840.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf5340.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf5340.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf54h20.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf54h20.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf54l05.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf54l05.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf54l10.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf54l10.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf54l15.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf54l15.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf54lm20a_enga.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf54lm20a_enga.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf54lv10a_enga.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf54lv10a_enga.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf7120_enga.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf7120_enga.dox -------------------------------------------------------------------------------- /nrfx/doc/nrf91_series.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrf91_series.dox -------------------------------------------------------------------------------- /nrfx/doc/nrfx.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrfx.doxyfile -------------------------------------------------------------------------------- /nrfx/doc/nrfx_4_0_migration_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrfx_4_0_migration_guide.md -------------------------------------------------------------------------------- /nrfx/doc/nrfx_api.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/doc/nrfx_api.dox -------------------------------------------------------------------------------- /nrfx/drivers/include/nrf_bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrf_bitmask.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_adc.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_bellboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_bellboard.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_clock.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_clock_hfclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_clock_hfclk.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_clock_hfclk192m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_clock_hfclk192m.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_clock_hfclkaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_clock_hfclkaudio.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_clock_lfclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_clock_lfclk.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_clock_xo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_clock_xo.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_clock_xo24m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_clock_xo24m.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_comp.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_cracen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_cracen.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_egu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_egu.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_gpiote.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_grtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_grtc.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_i2s.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_ipc.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_lpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_lpcomp.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_mramc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_mramc.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_nfct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_nfct.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_nvmc.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_pdm.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_power.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_power_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_power_clock.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_power_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_power_compat.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_pwm.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_qdec.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_qspi.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_rng.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_rramc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_rramc.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_rtc.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_saadc.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_spi.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_spim.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_spis.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_systick.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_tbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_tbm.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_temp.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_timer.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_twi.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_twi_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_twi_twim.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_twim.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_twis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_twis.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_uart.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_uarte.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_usbd.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_usbreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_usbreg.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_vevif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_vevif.h -------------------------------------------------------------------------------- /nrfx/drivers/include/nrfx_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/include/nrfx_wdt.h -------------------------------------------------------------------------------- /nrfx/drivers/nrfx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/nrfx_common.h -------------------------------------------------------------------------------- /nrfx/drivers/nrfx_errata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/nrfx_errata.h -------------------------------------------------------------------------------- /nrfx/drivers/nrfx_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/nrfx_errors.h -------------------------------------------------------------------------------- /nrfx/drivers/nrfx_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/nrfx_utils.h -------------------------------------------------------------------------------- /nrfx/drivers/nrfx_utils_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/nrfx_utils_internal.h -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_adc.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_bellboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_bellboard.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_clock.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_clock_hfclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_clock_hfclk.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_clock_hfclk192m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_clock_hfclk192m.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_clock_hfclkaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_clock_hfclkaudio.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_clock_lfclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_clock_lfclk.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_clock_xo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_clock_xo.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_clock_xo24m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_clock_xo24m.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_comp.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_comp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_comp_common.h -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_cracen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_cracen.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_egu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_egu.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_gpiote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_gpiote.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_grtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_grtc.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_i2s.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_ipc.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_lpcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_lpcomp.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_lpcomp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_lpcomp_common.h -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_mramc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_mramc.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_nfct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_nfct.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_nvmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_nvmc.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_pdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_pdm.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_power.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_pwm.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_qdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_qdec.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_qspi.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_rng.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_rramc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_rramc.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_rtc.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_saadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_saadc.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_saadc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_saadc_common.h -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_spi.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_spim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_spim.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_spis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_spis.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_systick.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_tbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_tbm.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_temp.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_timer.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_twi.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_twi_twim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_twi_twim.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_twim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_twim.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_twis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_twis.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_uart.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_uarte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_uarte.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_usbd.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_usbd_errata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_usbd_errata.h -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_usbreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_usbreg.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_vevif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_vevif.c -------------------------------------------------------------------------------- /nrfx/drivers/src/nrfx_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/nrfx_wdt.c -------------------------------------------------------------------------------- /nrfx/drivers/src/prs/nrfx_prs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/prs/nrfx_prs.c -------------------------------------------------------------------------------- /nrfx/drivers/src/prs/nrfx_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/drivers/src/prs/nrfx_prs.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_aar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_aar.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_acl.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_adc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_auxpll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_auxpll.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_bellboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_bellboard.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_bicr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_bicr.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_bprot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_bprot.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_cache.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_ccm.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_clock.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_common.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_comp.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_cracen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_cracen.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_cracen_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_cracen_cm.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_cracen_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_cracen_rng.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_ctrlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_ctrlap.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_dcnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_dcnf.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_dppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_dppi.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_ecb.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_egu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_egu.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_exmif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_exmif.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_ficr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_ficr.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_fpu.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_glitchdet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_glitchdet.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_gpio.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_gpiote.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_grtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_grtc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_hsfll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_hsfll.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_i2s.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_ipc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_ipct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_ipct.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_kmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_kmu.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_lfrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_lfrc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_lfxo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_lfxo.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_lpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_lpcomp.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_lrcconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_lrcconf.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_memconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_memconf.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_mpc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_mpu.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_mramc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_mramc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_mutex.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_mvdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_mvdma.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_mwu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_mwu.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_nfct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_nfct.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_nvmc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_oscillators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_oscillators.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_pdm.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_power.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_ppi.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_ppib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_ppib.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_pwm.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_qdec.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_qspi.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_radio.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_ramc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_ramc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_regulators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_regulators.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_reset.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_resetinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_resetinfo.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_rng.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_rramc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_rramc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_rtc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_saadc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_spi.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_spim.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_spis.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_spu.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_stm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_stm.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_systick.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_tampc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_tampc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_tbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_tbm.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_tddconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_tddconf.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_tdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_tdm.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_temp.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_timer.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_twi.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_twim.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_twis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_twis.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_uart.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_uarte.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_uicr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_uicr.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_usbd.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_usbhs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_usbhs.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_usbreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_usbreg.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_vmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_vmc.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_vpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_vpr.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_vpr_clic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_vpr_clic.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_vpr_csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_vpr_csr.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_vpr_csr_vevif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_vpr_csr_vevif.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_vpr_csr_vio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_vpr_csr_vio.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_vpr_csr_vtim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_vpr_csr_vtim.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_vreqctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_vreqctrl.h -------------------------------------------------------------------------------- /nrfx/hal/nrf_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/hal/nrf_wdt.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_bellboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_bellboard.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_common.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_comp.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_dppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_dppi.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_gpio.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_gpiote.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_grtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_grtc.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_i2s.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_lpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_lpcomp.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_mramc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_mramc.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_mvdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_mvdma.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_nfct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_nfct.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_pdm.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_pwm.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_qdec.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_rramc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_rramc.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_rtc.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_saadc.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_spim.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_tbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_tbm.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_temp.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_timer.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_twim.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_uarte.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_vpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_vpr.h -------------------------------------------------------------------------------- /nrfx/haly/nrfy_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/haly/nrfy_wdt.h -------------------------------------------------------------------------------- /nrfx/helpers/internal/nrfx_gppiv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/internal/nrfx_gppiv1.h -------------------------------------------------------------------------------- /nrfx/helpers/internal/nrfx_gppiv1_ipct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/internal/nrfx_gppiv1_ipct.c -------------------------------------------------------------------------------- /nrfx/helpers/internal/nrfx_gppiv1_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/internal/nrfx_gppiv1_shim.c -------------------------------------------------------------------------------- /nrfx/helpers/internal/nrfx_interconnect_ipct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/internal/nrfx_interconnect_ipct.h -------------------------------------------------------------------------------- /nrfx/helpers/nrf_cracen_cm_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrf_cracen_cm_dma.h -------------------------------------------------------------------------------- /nrfx/helpers/nrf_vdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrf_vdma.h -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_analog_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_analog_common.h -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_flag32_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_flag32_allocator.c -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_flag32_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_flag32_allocator.h -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_gppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_gppi.h -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_gppi_dppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_gppi_dppi.c -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_gppi_ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_gppi_ppi.c -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_gppi_routes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_gppi_routes.h -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_ids.h -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_ram_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_ram_ctrl.c -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_ram_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_ram_ctrl.h -------------------------------------------------------------------------------- /nrfx/helpers/nrfx_reset_reason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/helpers/nrfx_reset_reason.h -------------------------------------------------------------------------------- /nrfx/lib/nrfx_coredep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/lib/nrfx_coredep.h -------------------------------------------------------------------------------- /nrfx/nrfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/nrfx.h -------------------------------------------------------------------------------- /nrfx/samples/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/CHANGELOG.md -------------------------------------------------------------------------------- /nrfx/samples/common/common-pinctrl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/common/common-pinctrl.dtsi -------------------------------------------------------------------------------- /nrfx/samples/common/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/common/common.cmake -------------------------------------------------------------------------------- /nrfx/samples/common/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/common/common.conf -------------------------------------------------------------------------------- /nrfx/samples/common/nrfx_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/common/nrfx_example.h -------------------------------------------------------------------------------- /nrfx/samples/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/README.md -------------------------------------------------------------------------------- /nrfx/samples/doc/buildfiles/extra_stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/buildfiles/extra_stylesheet.css -------------------------------------------------------------------------------- /nrfx/samples/doc/buildfiles/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/buildfiles/favicon.ico -------------------------------------------------------------------------------- /nrfx/samples/doc/buildfiles/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/buildfiles/footer.html -------------------------------------------------------------------------------- /nrfx/samples/doc/buildfiles/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/buildfiles/header.html -------------------------------------------------------------------------------- /nrfx/samples/doc/buildfiles/layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/buildfiles/layout.xml -------------------------------------------------------------------------------- /nrfx/samples/doc/buildfiles/nordic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/buildfiles/nordic_small.png -------------------------------------------------------------------------------- /nrfx/samples/doc/generate_html_doc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/generate_html_doc.bat -------------------------------------------------------------------------------- /nrfx/samples/doc/generate_html_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/generate_html_doc.sh -------------------------------------------------------------------------------- /nrfx/samples/doc/images/pwm_common_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/images/pwm_common_desc.gif -------------------------------------------------------------------------------- /nrfx/samples/doc/images/pwm_grouped_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/images/pwm_grouped_desc.gif -------------------------------------------------------------------------------- /nrfx/samples/doc/nrfx_examples.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/nrfx_examples.doxyfile -------------------------------------------------------------------------------- /nrfx/samples/doc/nrfx_examples_descriptions.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/doc/nrfx_examples_descriptions.dox -------------------------------------------------------------------------------- /nrfx/samples/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_cracen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_cracen/CMakeLists.txt -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_cracen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_cracen/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_cracen/boards/nrf54l15dk_nrf54l15_cpuapp.overlay: -------------------------------------------------------------------------------- 1 | &rng { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_cracen/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_cracen/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_cracen/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_CRACEN=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_cracen/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_cracen/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_egu/CMakeLists.txt -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_egu/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf52833dk_nrf52833.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_EGU0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf52833dk_nrf52833.overlay: -------------------------------------------------------------------------------- 1 | &egu0 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf52840dk_nrf52840.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_EGU0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- 1 | &egu0 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf52dk_nrf52832.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_EGU0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf52dk_nrf52832.overlay: -------------------------------------------------------------------------------- 1 | &egu0 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf5340dk_nrf5340_cpuapp.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_EGU0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- 1 | &egu0 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf54l15dk_nrf54l15_cpuapp.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_EGU10=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf54l15dk_nrf54l15_cpuapp.overlay: -------------------------------------------------------------------------------- 1 | &egu10 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf9160dk_nrf9160.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_EGU0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/boards/nrf9160dk_nrf9160.overlay: -------------------------------------------------------------------------------- 1 | &egu0 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_egu/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/prj.conf: -------------------------------------------------------------------------------- 1 | # Empty project configuration file 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_egu/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_egu/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/boards/nrf52833dk_nrf52833.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/boards/nrf52840dk_nrf52840.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/boards/nrf52dk_nrf52832.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/boards/nrf5340dk_nrf5340_cpuapp.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/boards/nrf54l15dk_nrf54l15_cpuapp.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE20=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/boards/nrf9160dk_nrf9160.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/fork/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_gppi/fork/CMakeLists.txt -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/fork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_gppi/fork/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/fork/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_gppi/fork/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/fork/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_gppi/fork/prj.conf -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/fork/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_gppi/fork/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/one_to_one/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_gppi/one_to_one/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/one_to_one/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_gppi/one_to_one/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/one_to_one/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_gppi/one_to_one/prj.conf -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_gppi/one_to_one/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_gppi/one_to_one/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/boards/nrf52833dk_nrf52833.overlay: -------------------------------------------------------------------------------- 1 | &pwm0 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- 1 | &pwm0 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/boards/nrf52dk_nrf52832.overlay: -------------------------------------------------------------------------------- 1 | &pwm0 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- 1 | &pwm0 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/boards/nrf54l15dk_nrf54l15_cpuapp.overlay: -------------------------------------------------------------------------------- 1 | &pwm20 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/boards/nrf9160dk_nrf9160.overlay: -------------------------------------------------------------------------------- 1 | &pwm0 { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/common_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_pwm/common_mode/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/common_mode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_pwm/common_mode/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/common_mode/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_PWM=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/common_mode/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_pwm/common_mode/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/grouped_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_pwm/grouped_mode/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/grouped_mode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_pwm/grouped_mode/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_pwm/grouped_mode/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_PWM=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_rng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_rng/CMakeLists.txt -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_rng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_rng/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_rng/boards/nrf52833dk_nrf52833.overlay: -------------------------------------------------------------------------------- 1 | &rng { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_rng/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- 1 | &rng { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_rng/boards/nrf52dk_nrf52832.overlay: -------------------------------------------------------------------------------- 1 | &rng { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_rng/boards/nrf5340dk_nrf5340_cpunet.overlay: -------------------------------------------------------------------------------- 1 | &rng { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_rng/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_rng/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_rng/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_rng/prj.conf -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_rng/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_rng/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_saadc/boards/nrf52833dk_nrf52833.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_saadc/boards/nrf52840dk_nrf52840.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_saadc/boards/nrf52dk_nrf52832.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_saadc/boards/nrf5340dk_nrf5340_cpuapp.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_saadc/boards/nrf54l15dk_nrf54l15_cpuapp.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE20=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_saadc/boards/nrf9160dk_nrf9160.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPIOTE0=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_spim/blocking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_spim/blocking/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_spim/blocking/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_spim/blocking/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_spim/blocking/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_SPIM=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_spim/blocking/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_spim/blocking/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_spim/non_blocking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_spim/non_blocking/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_spim/non_blocking/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_spim/non_blocking/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_spim/non_blocking/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_spim/non_blocking/prj.conf -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/blocking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_temp/blocking/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/blocking/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_temp/blocking/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/blocking/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_TEMP=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/blocking/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_temp/blocking/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/boards/nrf52833dk_nrf52833.overlay: -------------------------------------------------------------------------------- 1 | &temp { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- 1 | &temp { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/boards/nrf52dk_nrf52832.overlay: -------------------------------------------------------------------------------- 1 | &temp { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/boards/nrf5340dk_nrf5340_cpunet.overlay: -------------------------------------------------------------------------------- 1 | &temp { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/boards/nrf54l15dk_nrf54l15_cpuapp.overlay: -------------------------------------------------------------------------------- 1 | &temp { 2 | status = "okay"; 3 | }; 4 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/non_blocking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_temp/non_blocking/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/non_blocking/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_temp/non_blocking/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_temp/non_blocking/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_TEMP=y -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_timer/counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_timer/counter/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_timer/counter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_timer/counter/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_timer/counter/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_TIMER=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_timer/counter/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_timer/counter/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_timer/timer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_timer/timer/CMakeLists.txt -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_timer/timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_timer/timer/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_timer/timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_timer/timer/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_timer/timer/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_TIMER=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_timer/timer/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_timer/timer/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_twim_twis/txrx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_twim_twis/txrx/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_twim_twis/txrx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_twim_twis/txrx/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_twim_twis/txrx/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_twim_twis/txrx/prj.conf -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_twim_twis/txrx/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_twim_twis/txrx/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_twim_twis/txtx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_twim_twis/txtx/README.md -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_twim_twis/txtx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_twim_twis/txtx/main.c -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_twim_twis/txtx/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_twim_twis/txtx/prj.conf -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_twim_twis/txtx/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/samples/src/nrfx_twim_twis/txtx/sample.yaml -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_uarte/boards/nrf54l15dk_nrf54l15_cpuapp.overlay: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_uarte/rx_double_buffered/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_UARTE=y 2 | -------------------------------------------------------------------------------- /nrfx/samples/src/nrfx_uarte/tx_rx_non_blocking/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_UARTE=y 2 | -------------------------------------------------------------------------------- /nrfx/templates/nrfx_config_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/templates/nrfx_config_common.h -------------------------------------------------------------------------------- /nrfx/templates/nrfx_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/templates/nrfx_glue.h -------------------------------------------------------------------------------- /nrfx/templates/nrfx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/nrfx/templates/nrfx_log.h -------------------------------------------------------------------------------- /utils/gen_offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/utils/gen_offsets.py -------------------------------------------------------------------------------- /utils/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/utils/generate.sh -------------------------------------------------------------------------------- /utils/module.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/utils/module.yml.j2 -------------------------------------------------------------------------------- /utils/update_blobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/utils/update_blobs.py -------------------------------------------------------------------------------- /zephyr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/zephyr/LICENSE.txt -------------------------------------------------------------------------------- /zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/hal_nordic/HEAD/zephyr/module.yml --------------------------------------------------------------------------------