User Activity

I have display with controller ILI9881C, which controlled via mipi-dsi.I want to use 800x800x24bit mode. How to understand what's the point to use dsi txclkex and dsi line byte frequency? and how it is correlate with ltdc frequency? in display contro...
Posted on December 11, 2013 at 08:06I want to use lsm303dlhc as outdoor thermometer. I use next code       int8_t value= 25+data[0];        uint8_t sign=value&0x80;        uint8_t cels=0;        if(sign)            cels=(~value)+1;        else     ...