Appendix B – Digital I/O Ports
61
Mo
bile
NVR
VPC
-3300S
************************************************************************************
Boolean SIOBitRead(byte LDN, byte Register, byte BitNum){
Byte TmpValue;
SIOEnterMBPnPMode();
SIOSelectLDN(LDN);
IOWriteByte(SIOIndex, Register);
TmpValue = IOReadByte(SIOData);
TmpValue &= (1 << BitNum);
SIOExitMBPnPMode();
If(TmpValue == 0)
Return 0;
Return 1;
}
VOID ConfigToOutputMode(byte LDN, byte Register, byte BitNum){
Byte TmpValue, OutputEnableReg;
OutputEnableReg = Register-1;
SIOEnterMBPnPMode();
SIOSelectLDN(LDN);
IOWriteByte(SIOIndex, OutputEnableReg);
TmpValue = IOReadByte(SIOData);
TmpValue |= (1 << BitNum);
IOWriteByte(SIOData, OutputEnableReg);
SIOExitMBPnPMode();
}
************************************************************************************
Содержание VPC-3300S
Страница 1: ...Last Updated February 2 2016 VPC 3300S Mobile NVR User s Manual 2nd Ed...
Страница 13: ...Mobile NVR VPC 3300S Chapter 1 Chapter 1 Product Specifications...
Страница 17: ...Mobile NVR VPC 3300S Chapter 2 Chapter 2 Hardware Information...
Страница 31: ...In Vehicle NVR VPC 3300S Chapter 3 Chapter 3 AMI BIOS Setup...
Страница 34: ...Chapter 3 AMI BIOS Setup 22 Mobile NVR VPC 3300S 3 3 Setup Submenu Main...
Страница 35: ...Chapter 3 AMI BIOS Setup 23 Mobile NVR VPC 3300S 3 4 Setup Submenu Advanced...
Страница 39: ...Chapter 3 AMI BIOS Setup 27 Mobile NVR VPC 3300S 3 4 4 Advanced Hardware Monitor...
Страница 42: ...Chapter 3 AMI BIOS Setup 30 Mobile NVR VPC 3300S 3 4 7 Advanced SIO Configuration...
Страница 45: ...Chapter 3 AMI BIOS Setup 33 Mobile NVR VPC 3300S 3 5 Setup submenu Chipset...
Страница 46: ...Chapter 3 AMI BIOS Setup 34 Mobile NVR VPC 3300S 3 5 1 Chipset North Bridge...
Страница 53: ...Chapter 3 AMI BIOS Setup 41 Mobile NVR VPC 3300S 3 7 1 Boot BBS Priorities...
Страница 54: ...Chapter 3 AMI BIOS Setup 42 Mobile NVR VPC 3300S 3 8 Setup submenu Save Exit...
Страница 55: ...In Vehicle NVR VPC 3300S Chapter 4 Chapter 4 Drivers Installation...
Страница 58: ...In Vehicle NVR VPC 3300S Appendix A Appendix A Watchdog Timer Programming...
Страница 64: ...In Vehicle NVR VPC 3300S Appendix B Appendix B Digital I O Ports...