| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |  Tests for the interrupt allocator. | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <esp_types.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include "rom/ets_sys.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "freertos/FreeRTOS.h"
 | 
					
						
							|  |  |  | #include "freertos/task.h"
 | 
					
						
							|  |  |  | #include "freertos/semphr.h"
 | 
					
						
							|  |  |  | #include "freertos/queue.h"
 | 
					
						
							|  |  |  | #include "freertos/xtensa_api.h"
 | 
					
						
							|  |  |  | #include "unity.h"
 | 
					
						
							|  |  |  | #include "soc/uart_reg.h"
 | 
					
						
							|  |  |  | #include "soc/dport_reg.h"
 | 
					
						
							|  |  |  | #include "soc/io_mux_reg.h"
 | 
					
						
							|  |  |  | #include "esp_intr_alloc.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-24 16:38:46 +08:00
										 |  |  | #include "driver/periph_ctrl.h"
 | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  | #include "driver/timer.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define TIMER_DIVIDER   16               /*!< Hardware timer clock divider */
 | 
					
						
							|  |  |  | #define TIMER_SCALE    (TIMER_BASE_CLK / TIMER_DIVIDER)  /*!< used to calculate counter value */
 | 
					
						
							|  |  |  | #define TIMER_INTERVAL0_SEC   (3.4179)   /*!< test interval for timer 0 */
 | 
					
						
							|  |  |  | #define TIMER_INTERVAL1_SEC   (5.78)   /*!< test interval for timer 1 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void my_timer_init(int timer_group, int timer_idx, int ival) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     timer_config_t config; | 
					
						
							|  |  |  |     config.alarm_en = 1; | 
					
						
							|  |  |  |     config.auto_reload = 1; | 
					
						
							|  |  |  |     config.counter_dir = TIMER_COUNT_UP; | 
					
						
							|  |  |  |     config.divider = TIMER_DIVIDER; | 
					
						
							|  |  |  |     config.intr_type = TIMER_INTR_LEVEL; | 
					
						
							|  |  |  |     config.counter_en = TIMER_PAUSE; | 
					
						
							|  |  |  |     /*Configure timer*/ | 
					
						
							|  |  |  |     timer_init(timer_group, timer_idx, &config); | 
					
						
							|  |  |  |     /*Stop timer counter*/ | 
					
						
							|  |  |  |     timer_pause(timer_group, timer_idx); | 
					
						
							|  |  |  |     /*Load counter value */ | 
					
						
							|  |  |  |     timer_set_counter_value(timer_group, timer_idx, 0x00000000ULL); | 
					
						
							|  |  |  |     /*Set alarm value*/ | 
					
						
							|  |  |  |     timer_set_alarm_value(timer_group, timer_idx, ival); | 
					
						
							|  |  |  |     /*Enable timer interrupt*/ | 
					
						
							|  |  |  |     timer_enable_intr(timer_group, timer_idx); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static volatile int count[4]={0,0,0,0}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void timer_isr(void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int timer_idx = (int)arg; | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     count[timer_idx]++; | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  |     if (timer_idx==0) { | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |         TIMERG0.int_clr_timers.t0 = 1; | 
					
						
							|  |  |  |         TIMERG0.hw_timer[0].update=1; | 
					
						
							|  |  |  |         TIMERG0.hw_timer[0].config.alarm_en = 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  |     if (timer_idx==1) { | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |         TIMERG0.int_clr_timers.t1 = 1; | 
					
						
							|  |  |  |         TIMERG0.hw_timer[1].update=1; | 
					
						
							|  |  |  |         TIMERG0.hw_timer[1].config.alarm_en = 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  |     if (timer_idx==2) { | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |         TIMERG1.int_clr_timers.t0 = 1; | 
					
						
							|  |  |  |         TIMERG1.hw_timer[0].update=1; | 
					
						
							|  |  |  |         TIMERG1.hw_timer[0].config.alarm_en = 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  |     if (timer_idx==3) { | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |         TIMERG1.int_clr_timers.t1 = 1; | 
					
						
							|  |  |  |         TIMERG1.hw_timer[1].update=1; | 
					
						
							|  |  |  |         TIMERG1.hw_timer[1].config.alarm_en = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | //  ets_printf("int %d\n", timer_idx);
 | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void timer_test(int flags) { | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     int x; | 
					
						
							|  |  |  |     timer_isr_handle_t inth[4]; | 
					
						
							|  |  |  |     my_timer_init(TIMER_GROUP_0, TIMER_0, 110000); | 
					
						
							|  |  |  |     my_timer_init(TIMER_GROUP_0, TIMER_1, 120000); | 
					
						
							|  |  |  |     my_timer_init(TIMER_GROUP_1, TIMER_0, 130000); | 
					
						
							|  |  |  |     my_timer_init(TIMER_GROUP_1, TIMER_1, 140000); | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  |     timer_isr_register(TIMER_GROUP_0, TIMER_0, timer_isr, (void*)0, flags|ESP_INTR_FLAG_INTRDISABLED, &inth[0]); | 
					
						
							|  |  |  |     timer_isr_register(TIMER_GROUP_0, TIMER_1, timer_isr, (void*)1, flags, &inth[1]); | 
					
						
							|  |  |  |     timer_isr_register(TIMER_GROUP_1, TIMER_0, timer_isr, (void*)2, flags, &inth[2]); | 
					
						
							|  |  |  |     timer_isr_register(TIMER_GROUP_1, TIMER_1, timer_isr, (void*)3, flags, &inth[3]); | 
					
						
							|  |  |  |     timer_start(TIMER_GROUP_0, TIMER_0); | 
					
						
							|  |  |  |     timer_start(TIMER_GROUP_0, TIMER_1); | 
					
						
							|  |  |  |     timer_start(TIMER_GROUP_1, TIMER_0); | 
					
						
							|  |  |  |     timer_start(TIMER_GROUP_1, TIMER_1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     for (x=0; x<4; x++) count[x]=0; | 
					
						
							|  |  |  |     printf("Interrupts allocated: %d (dis) %d %d %d\n", | 
					
						
							|  |  |  |             esp_intr_get_intno(inth[0]), esp_intr_get_intno(inth[1]), | 
					
						
							|  |  |  |             esp_intr_get_intno(inth[2]), esp_intr_get_intno(inth[3])); | 
					
						
							|  |  |  |     printf("Timer values on start: %d %d %d %d\n", count[0], count[1], count[2], count[3]); | 
					
						
							| 
									
										
										
										
											2016-12-22 12:42:21 +11:00
										 |  |  |     vTaskDelay(1000 / portTICK_PERIOD_MS); | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     printf("Timer values after 1 sec: %d %d %d %d\n", count[0], count[1], count[2], count[3]); | 
					
						
							|  |  |  |     TEST_ASSERT(count[0]==0); | 
					
						
							|  |  |  |     TEST_ASSERT(count[1]!=0); | 
					
						
							|  |  |  |     TEST_ASSERT(count[2]!=0); | 
					
						
							|  |  |  |     TEST_ASSERT(count[3]!=0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("Disabling timers 1 and 2...\n"); | 
					
						
							|  |  |  |     esp_intr_enable(inth[0]); | 
					
						
							|  |  |  |     esp_intr_disable(inth[1]); | 
					
						
							|  |  |  |     esp_intr_disable(inth[2]); | 
					
						
							|  |  |  |     for (x=0; x<4; x++) count[x]=0; | 
					
						
							| 
									
										
										
										
											2016-12-22 12:42:21 +11:00
										 |  |  |     vTaskDelay(1000 / portTICK_PERIOD_MS); | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     printf("Timer values after 1 sec: %d %d %d %d\n", count[0], count[1], count[2], count[3]); | 
					
						
							|  |  |  |     TEST_ASSERT(count[0]!=0); | 
					
						
							|  |  |  |     TEST_ASSERT(count[1]==0); | 
					
						
							|  |  |  |     TEST_ASSERT(count[2]==0); | 
					
						
							|  |  |  |     TEST_ASSERT(count[3]!=0); | 
					
						
							|  |  |  |     printf("Disabling other half...\n"); | 
					
						
							|  |  |  |     esp_intr_enable(inth[1]); | 
					
						
							|  |  |  |     esp_intr_enable(inth[2]); | 
					
						
							|  |  |  |     esp_intr_disable(inth[0]); | 
					
						
							|  |  |  |     esp_intr_disable(inth[3]); | 
					
						
							|  |  |  |     for (x=0; x<4; x++) count[x]=0; | 
					
						
							| 
									
										
										
										
											2016-12-22 12:42:21 +11:00
										 |  |  |     vTaskDelay(1000 / portTICK_PERIOD_MS); | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     printf("Timer values after 1 sec: %d %d %d %d\n", count[0], count[1], count[2], count[3]); | 
					
						
							|  |  |  |     TEST_ASSERT(count[0]==0); | 
					
						
							|  |  |  |     TEST_ASSERT(count[1]!=0); | 
					
						
							|  |  |  |     TEST_ASSERT(count[2]!=0); | 
					
						
							|  |  |  |     TEST_ASSERT(count[3]==0); | 
					
						
							|  |  |  |     printf("Done.\n"); | 
					
						
							|  |  |  |     esp_intr_free(inth[0]); | 
					
						
							|  |  |  |     esp_intr_free(inth[1]); | 
					
						
							|  |  |  |     esp_intr_free(inth[2]); | 
					
						
							|  |  |  |     esp_intr_free(inth[3]); | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-08 12:04:26 +08:00
										 |  |  | static volatile int int_timer_ctr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void int_timer_handler(void *arg) { | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     xthal_set_ccompare(1, xthal_get_ccount()+8000000); | 
					
						
							|  |  |  |     int_timer_ctr++; | 
					
						
							| 
									
										
										
										
											2016-12-08 12:04:26 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void local_timer_test() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     intr_handle_t ih; | 
					
						
							|  |  |  |     esp_err_t r; | 
					
						
							|  |  |  |     r=esp_intr_alloc(ETS_INTERNAL_TIMER1_INTR_SOURCE, 0, int_timer_handler, NULL, &ih); | 
					
						
							|  |  |  |     TEST_ASSERT(r==ESP_OK); | 
					
						
							|  |  |  |     printf("Int timer 1 intno %d\n", esp_intr_get_intno(ih)); | 
					
						
							|  |  |  |     xthal_set_ccompare(1, xthal_get_ccount()+8000000); | 
					
						
							|  |  |  |     int_timer_ctr=0; | 
					
						
							| 
									
										
										
										
											2016-12-22 12:42:21 +11:00
										 |  |  |     vTaskDelay(1000 / portTICK_PERIOD_MS); | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     printf("Timer val after 1 sec: %d\n", int_timer_ctr); | 
					
						
							|  |  |  |     TEST_ASSERT(int_timer_ctr!=0); | 
					
						
							|  |  |  |     printf("Disabling int\n"); | 
					
						
							|  |  |  |     esp_intr_disable(ih); | 
					
						
							|  |  |  |     int_timer_ctr=0; | 
					
						
							| 
									
										
										
										
											2016-12-22 12:42:21 +11:00
										 |  |  |     vTaskDelay(1000 / portTICK_PERIOD_MS); | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     printf("Timer val after 1 sec: %d\n", int_timer_ctr); | 
					
						
							|  |  |  |     TEST_ASSERT(int_timer_ctr==0); | 
					
						
							|  |  |  |     printf("Re-enabling\n"); | 
					
						
							|  |  |  |     esp_intr_enable(ih); | 
					
						
							| 
									
										
										
										
											2016-12-22 12:42:21 +11:00
										 |  |  |     vTaskDelay(1000 / portTICK_PERIOD_MS); | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     printf("Timer val after 1 sec: %d\n", int_timer_ctr); | 
					
						
							|  |  |  |     TEST_ASSERT(int_timer_ctr!=0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("Free int, re-alloc disabled\n"); | 
					
						
							|  |  |  |     r=esp_intr_free(ih); | 
					
						
							|  |  |  |     TEST_ASSERT(r==ESP_OK); | 
					
						
							|  |  |  |     r=esp_intr_alloc(ETS_INTERNAL_TIMER1_INTR_SOURCE, ESP_INTR_FLAG_INTRDISABLED, int_timer_handler, NULL, &ih); | 
					
						
							|  |  |  |     TEST_ASSERT(r==ESP_OK); | 
					
						
							|  |  |  |     int_timer_ctr=0; | 
					
						
							| 
									
										
										
										
											2016-12-22 12:42:21 +11:00
										 |  |  |     vTaskDelay(1000 / portTICK_PERIOD_MS); | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     printf("Timer val after 1 sec: %d\n", int_timer_ctr); | 
					
						
							|  |  |  |     TEST_ASSERT(int_timer_ctr==0); | 
					
						
							|  |  |  |     printf("Re-enabling\n"); | 
					
						
							|  |  |  |     esp_intr_enable(ih); | 
					
						
							| 
									
										
										
										
											2016-12-22 12:42:21 +11:00
										 |  |  |     vTaskDelay(1000 / portTICK_PERIOD_MS); | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     printf("Timer val after 1 sec: %d\n", int_timer_ctr); | 
					
						
							|  |  |  |     TEST_ASSERT(int_timer_ctr!=0); | 
					
						
							|  |  |  |     r=esp_intr_free(ih); | 
					
						
							|  |  |  |     TEST_ASSERT(r==ESP_OK); | 
					
						
							|  |  |  |     printf("Done.\n"); | 
					
						
							| 
									
										
										
										
											2016-12-08 12:04:26 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE("Intr_alloc test, CPU-local int source", "[esp32]") | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     local_timer_test(); | 
					
						
							| 
									
										
										
										
											2016-12-08 12:04:26 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE("Intr_alloc test, private ints", "[esp32]") | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     timer_test(0); | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE("Intr_alloc test, shared ints", "[esp32]") | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-08 12:38:22 +08:00
										 |  |  |     timer_test(ESP_INTR_FLAG_SHARED); | 
					
						
							| 
									
										
										
										
											2016-12-07 21:30:21 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-11 01:14:18 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE("Can allocate IRAM int only with an IRAM handler", "[esp32]") | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     void dummy(void* arg) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     IRAM_ATTR void dummy_iram(void* arg) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     RTC_IRAM_ATTR void dummy_rtc(void* arg) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     intr_handle_t ih; | 
					
						
							|  |  |  |     esp_err_t err = esp_intr_alloc(ETS_INTERNAL_PROFILING_INTR_SOURCE, | 
					
						
							|  |  |  |             ESP_INTR_FLAG_IRAM, &dummy, NULL, &ih); | 
					
						
							|  |  |  |     TEST_ASSERT_EQUAL_INT(ESP_ERR_INVALID_ARG, err); | 
					
						
							|  |  |  |     err = esp_intr_alloc(ETS_INTERNAL_PROFILING_INTR_SOURCE, | 
					
						
							|  |  |  |             ESP_INTR_FLAG_IRAM, &dummy_iram, NULL, &ih); | 
					
						
							|  |  |  |     TEST_ESP_OK(err); | 
					
						
							|  |  |  |     err = esp_intr_free(ih); | 
					
						
							|  |  |  |     TEST_ESP_OK(err); | 
					
						
							|  |  |  |     err = esp_intr_alloc(ETS_INTERNAL_PROFILING_INTR_SOURCE, | 
					
						
							|  |  |  |             ESP_INTR_FLAG_IRAM, &dummy_rtc, NULL, &ih); | 
					
						
							|  |  |  |     TEST_ESP_OK(err); | 
					
						
							|  |  |  |     err = esp_intr_free(ih); | 
					
						
							|  |  |  |     TEST_ESP_OK(err); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-08-18 15:15:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-08 15:32:43 +08:00
										 |  |  | #include "soc/spi_periph.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-18 15:15:47 +08:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  |     bool flag1; | 
					
						
							|  |  |  |     bool flag2; | 
					
						
							|  |  |  |     bool flag3; | 
					
						
							|  |  |  |     bool flag4; | 
					
						
							|  |  |  | } intr_alloc_test_ctx_t; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void IRAM_ATTR int_handler1(void* arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     intr_alloc_test_ctx_t* ctx=(intr_alloc_test_ctx_t*)arg; | 
					
						
							|  |  |  |     ets_printf("handler 1 called.\n"); | 
					
						
							|  |  |  |     if ( ctx->flag1 ) { | 
					
						
							|  |  |  |         ctx->flag3 = true; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         ctx->flag1 = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     SPI2.slave.trans_done = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void IRAM_ATTR int_handler2(void* arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     intr_alloc_test_ctx_t* ctx = (intr_alloc_test_ctx_t*)arg; | 
					
						
							|  |  |  |     ets_printf("handler 2 called.\n"); | 
					
						
							|  |  |  |     if ( ctx->flag2 ) { | 
					
						
							|  |  |  |         ctx->flag4 = true; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         ctx->flag2 = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE("allocate 2 handlers for a same source and remove the later one","[esp32]") | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     intr_alloc_test_ctx_t ctx = {false, false, false, false }; | 
					
						
							|  |  |  |     intr_handle_t handle1, handle2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-24 16:38:46 +08:00
										 |  |  |     //enable HSPI(spi2)
 | 
					
						
							|  |  |  |     periph_module_enable(PERIPH_HSPI_MODULE); | 
					
						
							| 
									
										
										
										
											2017-08-18 15:15:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     esp_err_t r; | 
					
						
							|  |  |  |     r=esp_intr_alloc(ETS_SPI2_INTR_SOURCE, ESP_INTR_FLAG_SHARED, int_handler1, &ctx, &handle1); | 
					
						
							|  |  |  |     TEST_ESP_OK(r); | 
					
						
							|  |  |  |     //try an invalid assign first
 | 
					
						
							| 
									
										
										
										
											2017-10-18 21:09:53 +08:00
										 |  |  |     r=esp_intr_alloc(ETS_SPI2_INTR_SOURCE, 0, int_handler2, NULL, &handle2); | 
					
						
							| 
									
										
										
										
											2017-08-18 15:15:47 +08:00
										 |  |  |     TEST_ASSERT_EQUAL_INT(r, ESP_ERR_NOT_FOUND ); | 
					
						
							|  |  |  |     //assign shared then
 | 
					
						
							|  |  |  |     r=esp_intr_alloc(ETS_SPI2_INTR_SOURCE, ESP_INTR_FLAG_SHARED, int_handler2, &ctx, &handle2); | 
					
						
							|  |  |  |     TEST_ESP_OK(r); | 
					
						
							|  |  |  |     SPI2.slave.trans_inten = 1; | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     printf("trigger first time.\n"); | 
					
						
							|  |  |  |     SPI2.slave.trans_done = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vTaskDelay(100); | 
					
						
							|  |  |  |     TEST_ASSERT( ctx.flag1 && ctx.flag2 ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("remove intr 1.\n"); | 
					
						
							|  |  |  |     r=esp_intr_free(handle2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("trigger second time.\n"); | 
					
						
							|  |  |  |     SPI2.slave.trans_done = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vTaskDelay(500); | 
					
						
							|  |  |  |     TEST_ASSERT( ctx.flag3 && !ctx.flag4 ); | 
					
						
							|  |  |  |     printf("test passed.\n"); | 
					
						
							|  |  |  | } |