#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
//main
void app_main() {
//definitions
uint16_t p = 0x0f, g = 0x3df;
//printing the variables
printf("%x and %x\n",p,g);
}
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
//main
void app_main() {
//definitions
uint16_t p = 0x0f, g = 0x3df;
//printing the variables
printf("%x and %x\n",p,g);
}