User Activity

Posted on November 13, 2015 at 22:40 Hi guys i have managed to communicate using CAN protocol now i want to send around 200 16 bit values from 1 stm32f4 to another stm32f4 below is the code to transfer 8 values, How can i improve my code to tran...
Posted on November 13, 2015 at 11:01 Hi guys i am struggling to convert 2 8bit values into 16bit value, please help me //Global variable volatile uint8_t data[16]; volatile uint16_t BIG; main() { data[1] = 23;//msb data[0] = 21; //lsb BIG...
Posted on November 11, 2015 at 17:50 Hi every one, especially Mr.Clive, today i have problem with CAN FILTERS i want to allow all IDS from 100 to 1FF in other words block all messages after 0x0200 here is my code, Please help me, Thanks in...
Posted on November 11, 2015 at 17:48 Hi every one, especially Mr.Clive, today i have problem with CAN FILTERS i want to allow all IDS from 100 to 1FF in other words block all messages after 0x0200 here is my code, Please help me, Thanks in ad...
Posted on November 10, 2015 at 18:32 Hello Every one! Can any 1 please help me with USART data transfer.. The problem is i want to transfer 16 bit value which is saved in global variable to computer from USART. i am trying this void usa...