Searched refs:SOC_TIMER_GROUP_TIMERS_PER_GROUP (Results 1 – 9 of 9) sorted by relevance
/hal_espressif-3.6.0/components/esp_hw_support/test/ |
D | test_intr_alloc.c | 56 int group_id = timer_idx / SOC_TIMER_GROUP_TIMERS_PER_GROUP; in timer_isr() 57 int timer_id = timer_idx % SOC_TIMER_GROUP_TIMERS_PER_GROUP; in timer_isr() 68 for (int j = 0; j < SOC_TIMER_GROUP_TIMERS_PER_GROUP; j++) { in timer_test() 69 my_timer_init(i, j, 100000 + 10000 * (i * SOC_TIMER_GROUP_TIMERS_PER_GROUP + j + 1)); in timer_test() 75 for (int j = 1; j < SOC_TIMER_GROUP_TIMERS_PER_GROUP; j++) { in timer_test() 80 for (int j = 0; j < SOC_TIMER_GROUP_TIMERS_PER_GROUP; j++) { in timer_test() 81 …r(i, j, timer_isr, (void *)(i * SOC_TIMER_GROUP_TIMERS_PER_GROUP + j), flags, &inth[i * SOC_TIMER_… in timer_test() 82 …"Interrupts allocated: %d\r\n", esp_intr_get_intno(inth[i * SOC_TIMER_GROUP_TIMERS_PER_GROUP + j])… in timer_test() 86 for (int j = 0; j < SOC_TIMER_GROUP_TIMERS_PER_GROUP; j++) { in timer_test()
|
/hal_espressif-3.6.0/components/hal/include/hal/ |
D | timer_types.h | 43 #if SOC_TIMER_GROUP_TIMERS_PER_GROUP > 1 72 #if SOC_TIMER_GROUP_TIMERS_PER_GROUP > 1
|
/hal_espressif-3.6.0/components/soc/esp32c3/include/soc/ |
D | soc_caps.h | 249 #define SOC_TIMER_GROUP_TIMERS_PER_GROUP (1) macro 252 #define SOC_TIMER_GROUP_TOTAL_TIMERS (SOC_TIMER_GROUPS * SOC_TIMER_GROUP_TIMERS_PER_GROUP)
|
/hal_espressif-3.6.0/components/soc/esp32h2/include/soc/ |
D | soc_caps.h | 237 #define SOC_TIMER_GROUP_TIMERS_PER_GROUP (1) macro 240 #define SOC_TIMER_GROUP_TOTAL_TIMERS (SOC_TIMER_GROUPS * SOC_TIMER_GROUP_TIMERS_PER_GROUP)
|
/hal_espressif-3.6.0/components/soc/esp32s3/include/soc/ |
D | soc_caps.h | 220 #define SOC_TIMER_GROUP_TIMERS_PER_GROUP (2) macro 223 #define SOC_TIMER_GROUP_TOTAL_TIMERS (SOC_TIMER_GROUPS * SOC_TIMER_GROUP_TIMERS_PER_GROUP)
|
/hal_espressif-3.6.0/components/soc/esp32s2/include/soc/ |
D | soc_caps.h | 237 #define SOC_TIMER_GROUP_TIMERS_PER_GROUP (2) macro 239 #define SOC_TIMER_GROUP_TOTAL_TIMERS (SOC_TIMER_GROUPS * SOC_TIMER_GROUP_TIMERS_PER_GROUP)
|
/hal_espressif-3.6.0/components/soc/esp32/include/soc/ |
D | soc_caps.h | 237 #define SOC_TIMER_GROUP_TIMERS_PER_GROUP (2) macro 239 #define SOC_TIMER_GROUP_TOTAL_TIMERS (SOC_TIMER_GROUPS * SOC_TIMER_GROUP_TIMERS_PER_GROUP)
|
/hal_espressif-3.6.0/components/driver/test/ |
D | test_timer.c | 52 #define GET_TIMER_INFO(TG, TID) (&timer_info[(TG)*SOC_TIMER_GROUP_TIMERS_PER_GROUP+(TID)]) 170 … actual_cnt_val[tg_idx * SOC_TIMER_GROUP_TIMERS_PER_GROUP + timer_idx] = current_cnt_val; in all_timer_get_counter_value() 219 …mer_get_alarm_value(tg_idx, timer_idx, &alarm_vals[tg_idx * SOC_TIMER_GROUP_TIMERS_PER_GROUP + tim… in all_timer_get_alarm_value() 229 …mer_idx), ESP_INTR_FLAG_LOWMED, &timer_isr_handles[tg_idx * SOC_TIMER_GROUP_TIMERS_PER_GROUP + tim… in all_timer_isr_reg() 238 …TEST_ESP_OK(esp_intr_free(timer_isr_handles[tg_idx * SOC_TIMER_GROUP_TIMERS_PER_GROUP + timer_idx]… in all_timer_isr_unreg() 809 …imer_idx), ESP_INTR_FLAG_LOWMED, &timer_isr_handle[tg_idx * SOC_TIMER_GROUP_TIMERS_PER_GROUP + tim… 829 …TEST_ESP_OK(esp_intr_free(timer_isr_handle[tg_idx * SOC_TIMER_GROUP_TIMERS_PER_GROUP + timer_idx])…
|
/hal_espressif-3.6.0/components/driver/ |
D | timer.c | 414 #if SOC_TIMER_GROUP_TIMERS_PER_GROUP > 1 in timer_group_get_intr_status_in_isr()
|