請先看『使用說明』
IO Device:F81966 LPC DIO under Linux console
From LEXWiKi
(Difference between revisions)
(→Digital Input/Ooutput test) |
(→Digital Input/Ooutput test) |
||
Line 37: | Line 37: | ||
</pre> | </pre> | ||
=== Digital Input/Ooutput test=== | === Digital Input/Ooutput test=== | ||
- | + | ||
+ | <font Size="5"><font color=#FF0000>Note when using the following boards:2I110D</font></font><br /> | ||
+ | <font Size="5"><font color=#FF0000>CIO1 needs to be controlled by CIO3</font></font><br /> | ||
+ | <br /> | ||
[[Image:F81966_io_define.jpg]]<br> | [[Image:F81966_io_define.jpg]]<br> | ||
'''sample code''' | '''sample code''' |
Revision as of 10:51, 29 October 2021
Contents |
The Sample code source you can download from
Source file: F81966_DIO_v1.1_Src_L.tar.gz
Binary file: F81966_DIO_v1.1_Bin_x64_L.tar.gz F81966_DIO_v1.1_Bin_x32_L.tar.gz
F81966 Libary : F81966_LIB_v1.1_x64_L.tar.gz F81966_LIB_v1.1_x32_L.tar.gz
Introduction F81966 DIO
- Start test Button,Send bits one by one and one by one receive
- CIO116 mode for CIO116 module use
- Set time countdown,If the end of the countdown, the trigger signal to reboot
- Enable loop ,Continuously reset the WDT to ensure that when the system is normal, the restart signal will not be triggered
F81966_DLL Function
bool F81966_OPEN(); void F81966_Init(); void F81966_LPC_Write(BYTE LDNData, BYTE reg, BYTE value); BYTE F81966_LPC_Read(BYTE LDNData, BYTE reg); void F81966_LPC_Digital_Write_LOW(BYTE byteValue); void F81966_LPC_Digital_Write_HIGH(BYTE byteValue); BYTE F81966_LPC_Digital_Read_LOW(); BYTE F81966_LPC_Digital_Read_HIGH(); void F81966_LPC_Set_WDT_Enable(BYTE byteValue); void F81966_LPC_Set_WDT_Disable(); void EntryLPC(); void ExitLPC();
Digital Input/Ooutput test
Note when using the following boards:2I110D
CIO1 needs to be controlled by CIO3
sample code
Set CIO1 CIO2 Digital Output all high F81966_LPC_Digital_Write_LOW(256); Set CIO1 CIO2 Digital Output all low F81966_LPC_Digital_Write_LOW(0); Set CIO1 Digital Output bit 4 high F81966_LPC_Digital_Write_LOW(16); Set CIO2 Digital Output bit 10 high F81966_LPC_Digital_Write_HIGH(4);
Read Din value = F81966_LPC_Digital_Read_LOW();
Watch Dog test
sample code
Set WDT 10 sec F81966_LPC_Set_WDT_Enable(10);
Disable WDT F81966_LPC_Set_WDT_Disable();