nt9856x/code/application/sifarsdk/component/DualCoreManager
2023-07-14 15:14:43 +08:00
..
include add sifarsdk source code. 2023-07-14 15:14:43 +08:00
src add sifarsdk source code. 2023-07-14 15:14:43 +08:00
CMakeLists.txt add sifarsdk source code. 2023-07-14 15:14:43 +08:00
README.md add sifarsdk source code. 2023-07-14 15:14:43 +08:00

双核模式

概述

基于双核体系芯片设计的模块,用于和小核进行数据通讯。

共用的数据结构

相机应用和小核使用共用的数据结构进行数据通讯:

typedef struct sf_RtosInfo_t
{
    unsigned int test1;
    unsigned int test2;
    unsigned int test3;
    unsigned int IsNight;
    unsigned int BatPer;
    unsigned int LiveBatPer;
    unsigned int recorddone;
    unsigned int Fctemp;
    unsigned short McuVer;
    unsigned char McuSubVer;
    unsigned int rtosBootTime;
} SF_RTOSINFO_S;

该数据结构必须保持小核相机应用cardv一致。