Hi all:
My camera's program is based on DM365 IPNC, When debug my program, it's once in a while stop and have no response. And the Uart show log is:
DRV_SyncRst: module = 47, domain = 0, state = 0
The uart cannot operate any more, and only to reset camera. I searched the source of IPNC, and found the function of DRV_SyncRst() , it'd no any remark about the function application. The function is major in mmap the phyaddr of 0x01C41000(Power/Sleep Controller). And the function is used three times:
int DRV_vpssInit()
{
DRV_SyncRst(47, 0, 0);
DRV_SyncRst(47, 0, 3);
}
int DRV_vpssExit()
{
DRV_SyncRst(47, 0, 2);
}
I don't know the function of DRV_SyncRst(), can you introduce it?
BTW, I'm also not find the introduce of Power/Sleep Controller register, which document?