Lisa

Results 7 comments of Lisa

void st7735s_flush(lv_disp_drv_t * drv, const lv_area_t * area, lv_color_t * color_map) { uint8_t data[4]; ESP_LOGD(TAG, "Flush, Portrait mode: %u, width: %u , height %u", drv->rotated, drv->hor_res, drv->ver_res); /*Column addresses*/ st7735s_send_cmd(ST7735_CASET);...

Ditch st7735s_portrait_mode var, totally unnecessary...

Wrong: uint8_t data[] = {0xC8, 0xC8, 0xA8, 0xA8}; Right: uint8_t data[] = {0xC0, 0x00, 0x60, 0xA0};

> const IO_INTERFACE_DESCRIPTION* socketio_get_interface_description(void) > { > return wsio_get_interface_description(); > } And #include "azure_c_shared_utility/wsio.h" ? Still have the error "undefined reference to `Prov_Device_MQTT_WS_Protocol'" even with the esp-idf from today...

There's a bug in your code if you're using CMake! The file port / CMakeLists.txt need to be changed also: From: ``` if (CONFIG_DEVICE_COMMON_NAME) list (APPEND COMPONENT_SRCS "${AZURE_IOT_SDK}/provisioning_client/src/iothub_auth_client.c") endif() set...

@shahpiyushv : will this be fixed in a future release?