Appendix A – Watchdog Timer Programming
65
Mob
ile
NV
R
VPC
-3350
S
************************************************************************************
VOID SIOEnterMBPnPMode(){
IOWriteByte(SIOIndex, 0x87);
IOWriteByte(SIOIndex, 0x87);
}
VOID SIOExitMBPnPMode(){
IOWriteByte(SIOIndex, 0xAA);
}
VOID SIOSelectLDN(byte LDN){
IOWriteByte(SIOIndex, 0x07);
// SIO LDN Register Offset = 0x07
IOWriteByte(SIOData, LDN);
}
VOID SIOBitSet(byte LDN, byte Register, byte BitNum, byte Value){
Byte TmpValue;
SIOEnterMBPnPMode();
SIOSelectLDN(byte LDN);
IOWriteByte(SIOIndex, Register);
TmpValue = IOReadByte(SIOData);
TmpValue &= ~(1 << BitNum);
TmpValue |= (Value << BitNum);
IOWriteByte(SIOData, TmpValue);
SIOExitMBPnPMode();
}
VOID SIOByteSet(byte LDN, byte Register, byte Value){
SIOEnterMBPnPMode();
SIOSelectLDN(LDN);
IOWriteByte(SIOIndex, Register);
IOWriteByte(SIOData, Value);
SIOExitMBPnPMode();
}
************************************************************************************
Summary of Contents for Aaeon VPC-3350S
Page 1: ...Last Updated September 25 2019 VPC 3350S Mobile NVR User s Manual 1st Ed ...
Page 14: ...Mobile NVR VPC 3350S Chapter 1 Chapter 1 Product Specifications ...
Page 18: ...Mobile NVR VPC 3350S Chapter 2 Chapter 2 Hardware Information ...
Page 20: ...Chapter 2 Hardware Information 7 Mobile NVR VPC 3350S ...
Page 21: ...Chapter 2 Hardware Information 8 Mobile NVR VPC 3350S ...
Page 22: ...Chapter 2 Hardware Information 9 Mobile NVR VPC 3350S 2 1 2 In Vehicle System ...
Page 23: ...Chapter 2 Hardware Information 10 Mobile NVR VPC 3350S ...
Page 24: ...Chapter 2 Hardware Information 11 Mobile NVR VPC 3350S 2 1 3 Main Board ...
Page 25: ...Chapter 2 Hardware Information 12 Mobile NVR VPC 3350S 2 2 Jumpers and Connectors Top Side ...
Page 26: ...Chapter 2 Hardware Information 13 Mobile NVR VPC 3350S Bottom Side ...
Page 33: ...Chapter 2 Hardware Information 20 Mobile NVR VPC 3350S 2 5 2 PER T529 I O Board Dimensions ...
Page 34: ...Chapter 2 Hardware Information 21 Mobile NVR VPC 3350S 2 5 3 Option Board Assembly ...
Page 44: ...Mobile NVR VPC 3350S Chapter 3 Chapter 3 AMI BIOS Setup ...
Page 47: ...Chapter 3 AMI BIOS Setup 34 Mobile NVR VPC 3350S 3 3 Setup Submenu Main ...
Page 48: ...Chapter 3 AMI BIOS Setup 35 Mobile NVR VPC 3350S 3 4 Setup Submenu Advanced ...
Page 55: ...Chapter 3 AMI BIOS Setup 42 Mobile NVR VPC 3350S 3 4 6 Advanced Hardware Monitor ...
Page 56: ...Chapter 3 AMI BIOS Setup 43 Mobile NVR VPC 3350S 3 4 7 Advanced SIO Configuration ...
Page 61: ...Chapter 3 AMI BIOS Setup 48 Mobile NVR VPC 3350S 3 5 Setup submenu Chipset ...
Page 69: ...Chapter 3 AMI BIOS Setup 56 Mobile NVR VPC 3350S 3 8 Setup submenu Save Exit ...
Page 70: ...Mobile NVR VPC 3350S Chapter 4 Chapter 4 Driver and Software Installation ...
Page 73: ...Mobile NVR VPC 3350S Appendix A Appendix A Watchdog Timer Programming ...
Page 79: ...Mobile NVR VPC 3350S Appendix B Appendix B Digital I O Ports ...