project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
42 lines
1.8 KiB
C
42 lines
1.8 KiB
C
#ifndef __HOST_MSG_H__
|
|
#define __HOST_MSG_H__
|
|
|
|
|
|
/*******************************************************************************
|
|
* Include Files
|
|
******************************************************************************/
|
|
|
|
/*******************************************************************************
|
|
* Defines
|
|
******************************************************************************/
|
|
|
|
|
|
/*******************************************************************************
|
|
* Enumerations
|
|
******************************************************************************///if change must sync to hci.h in FW
|
|
|
|
typedef enum en_host_priv_msg_type
|
|
{
|
|
E_HOST_PRIV_MSG_TYPE_RX_REORD_CREATE = 0x1000, ///< 0x1000, Create AMPDU RX reordering
|
|
E_HOST_PRIV_MSG_TYPE_RX_REORD_DEL, ///< 0x1001, Delete AMPDU RX reordering
|
|
E_HOST_PRIV_MSG_TYPE_RX_REORD_TIMEOUT, ///< 0x1002, Timeout for AMPDU RX reordering
|
|
E_HOST_PRIV_MSG_TYPE_PROBE_CLIENT, ///< 0x1003, polling client
|
|
E_HOST_PRIV_MSG_TYPE_CHECK_FW_STATUS, ///< 0x1004, polling client
|
|
E_HOST_PRIV_MSG_TYPE_SEND_KEEP_ALIVE, ///< 0x1005, sending keep alive frame
|
|
E_HOST_PRIV_MSG_TYPE_END = 0xFFFF,
|
|
}EN_HOST_PRIV_MSG_TYPE;
|
|
|
|
/*******************************************************************************
|
|
* Structures
|
|
******************************************************************************/
|
|
|
|
/*******************************************************************************
|
|
* Variables
|
|
******************************************************************************/
|
|
|
|
|
|
/*******************************************************************************
|
|
* Funcations
|
|
******************************************************************************/
|
|
#endif /* __HOST_MSG_H__ */
|