Closed JF002 closed 3 years ago
Hello, Thanks for your feedback! This‘s a driver issue, we will fix this issue soon.
Thanks!
FYI, I've just added those declaration (coming from https://github.com/bouffalolab/bl_iot_sdk) in drivers/bl602_driver/std_drv/inc/bl602_ef_ctrl.h, and it seems to build and run fine :
/**
* @brief Efuse Ldo11 Vout Sel Trim definition
*/
typedef struct {
uint32_t sel_value : 4; /*!< value trim */
uint32_t parity : 1; /*!< Parity of capcode */
uint32_t en : 1; /*!< Enable status */
uint32_t rsvd : 26; /*!< Reserved */
}Efuse_Ldo11VoutSelTrim_Info_Type;
/**
* @brief Efuse Tx Power definition
*/
typedef struct {
uint32_t txpower : 5; /*!< txpower value */
uint32_t parity : 1; /*!< Parity of capcode */
uint32_t en : 1; /*!< Enable status */
uint32_t rsvd : 25; /*!< Reserved */
}Efuse_TxPower_Info_Type;
Hello!
I'm trying to use this SDK to build an app for the BL602 (Pine64 board). I tried to build the helloworld app as follows:
But I get build errors related to
Efuse_Ldo11VoutSelTrim_Info_Type
andEfuse_TxPower_Info_Type
that are unknown. Here's the full build log:I'm using the current master branch (tag v1.2.3 from 1 July).