• __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...
  • __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...
  • 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...
  • 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...
  • Unpack uint32_t complex vector
    Hello, I have the following uint32_t input vector: {r0, i0, r1, i1, r2, i2, ...} I have to create 2 uint32_t output vectors: {r0, r1, r2, ...} {i0, i1, i2, ...} How can I create a vector that...