• Simulation tools and way to proceed
    The Paper which I chose as my base paper for my final year project is "Self-sustaining, efficient and forward-secure cryptographic constructions for Unattended Wireless Sensor Networks". It is told that...
  • Is there a better way to solve this requirement
    I have a different objects, like this: typedef struct { int32_t info ; } item1_properties_t ; and typedef struct { int32_t info ; } item2_properties_t ; the objects are held in containers...
  • malloc/free is there a way ....
    malloc/free is there a way to see if all match? I am exposed to this project where malloc is liberally spread all over the place and wonder if memory get freed up in all cases. I would hate to see...
  • Proper way to bit bang with KEIL
    Hello, what im trying to do is reverse engineering unknown device. What i need is catch a 16bytes data from it. Each clk's pulse speed is about 20 nanoseconds. I'm using stm32f4 discovery board, so i...
  • Most efficient way to do a SWAP32 ?
    I'm looking for the most efficient way (in terms of code size first, but speed is also an issue) of doing a little-endian to big-endian convertion on a DWORD. The commonly-used C macro: #define...