• enum type mixed with another type
    I'm getting a warning "enumeration type mixed with another type" with the following line of code. typedef enum { FALSE = 0, TRUE = !FALSE } bool; bool bResult; bool bAAA; bool bBBB; bResult = bAAA...
  • enum type mixed with another type
    I'm getting a warning "enumeration type mixed with another type" with the following line of code. typedef enum { FALSE = 0, TRUE = !FALSE } bool; bool bResult; bool bAAA; bool bBBB; bResult = bAAA...
  • CMSIS: DSP Lib - Frequency Bin Example (strange behavior)
    Estimated colleagues, following I explain the strange behavior: I am working the STM32F407 ARM processor, compiling with the GNU Tools ARM (4_9-2014q4) , use the HAL provided by STM32CubeF4 v1.5.0, using...
  • CMSIS: DSP Lib - Frequency Bin Example (strange behavior)
    Estimated colleagues, following I explain the strange behavior: I am working the STM32F407 ARM processor, compiling with the GNU Tools ARM (4_9-2014q4) , use the HAL provided by STM32CubeF4 v1.5.0, using...
  • CMSIS DSP DCT Type IV Functions
    I am trying to implement the DCT Type IV documented here on a nordic DK but cannot figure out how to use this function. Does anyone have an example of this being used? I am most confused about the state...