• How convert double type to float?
    The time transmitted from ALLSTAR DATA SOURCE is double type,and wanted to display time to LCD,so I want to convert double type to float ,and want to uS .How can i do that? Thanks a lot!
  • __asm uint32_t test (uint32_t data) problem
    Want to declare an assembler function (to be called from standard C) for a Cortex-M3 (LPC1343) like this: __asm uint32_t RevBytes (uint32_t data) { rev r0, r0 bx lr } Using armcc.exe V5.06...
  • uint32_t undefined
    uVision puzzles me a fair bit. In my project I have declared instances of TIM_TimeBaseInitTypeDef, RCC_ClocksTypeDef, I2S_InitTypeDef without any problems. Now I'm trying to declare an instance...
  • function __set_MSP(uint32_t topOfMainStack)
    Hello !!!!! I trying to use __set_MSP(uint32_t topOfMainStack), but when I'm using __set_MSP it is needed to add: #include "core_cm3.h" #include "core_cmFunc.h" When I do this it occured errors...
  • Is increment uint32_t atomic operation
    Hi, I have CMSIS RTOS thread increment uint32_t variable. Other thread is reading uint32_t variable. Do I need to use mutex to protected these read and write. Can I use any better way...