• type.h isn't anywhere to be found...
    Hi - I'm looking at the adc demo code for the MCB1700 (adc.c and .h, adctest.c, etc.) Each of the files includes type.h, but I cannot find that file anywhere. The typedef referenced in type.h was...
  • Enum isn't recognized in prototype
    Hi, I'm about to pull my hair out. I have a enumerated type in a file called iap_tools.h that looks like this: enum ChipType { master_chip, slave_chip, comm_chip }; I have a function...
  • 'RESET' isn't working in the uVison4
    Hello, I'm debugging in the uVISION4 and ULINK2 environment. When I issue the RESET command or icon, the PC is still unchanged. Please comment with me what is wrong in here. thanks,
  • convert from long to float
    Hi guys, I need to convert a 32 bit value(long) to a 32 bit float. Unfortunately there is no itof function in C and wikipedia does not give a simple solution. Casting simply does not do the conversion...
  • Incorrect compile for convert float to short/int16
    Hi, the following code for STM32F4 (Cortex-M4): float fZero= 0.; float fInfinity; short sTestPlus, sTestNeg; int main( void){ fInfinity= 1.f/fZero; sTestPlus= fInfinity; fInfinity= -1.f/fZero;...