You have only connected the LDO but in your code you have enabled the SMPS.Try to use : HAL_PWREx_ConfigSupply(PWR_LDO_SUPPLY); in system_clock config instead of your current setting :HAL_PWREx_ConfigSupply(PWR_DIRECT_SMPS_SUPPLY);This should help.
Hi Pascal,I'm not expert in Zigbee but as I got the same question referring to your post, I share the answer here:You can use "wpan0" as interface and the Tx power is expressed in dbm.To retrieve the TxPower, you can use for instance this type of cod...
Hi,The ACK bit is only set after having called the HAL_I2C_Transmit_IT() or HAL_I2C_Receive_IT(). The ACK bit can not bit set before calling these functions, because they start by checking that the I2C bus is free (by testing the BUSY bit).The FMPI2C...