xQueueSendFromISR warning #173
-
When I copy code from the inmterrupt video for gpio pin, I get a warning xQueueSendFromISR. Warning: Incompatible integer to pointer conversion passing 'int' to parameter of type cost void. xQueueHandle intQue; static void IRAM_ATTR wake_int(void * args) gpio_set_intr_type(POWER_EN, GPIO_INTR_NEGEDGE); |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I remember this happened before and I figured out the problem. In your video you pass "pinNumber" but should be pointer to it "&pinNuber" |
Beta Was this translation helpful? Give feedback.
I remember this happened before and I figured out the problem. In your video you pass "pinNumber" but should be pointer to it "&pinNuber"