IoDrvGPIOBase (FB)

 

FUNCTION_BLOCK IoDrvGPIOBase EXTENDS IoDrvBase IMPLE­MENTS ICmpIoDrvParameter

This is a rather generic FB, which is able to handle the I/Os on linux based systems. It is not fully generic, that's why it not resides in an own library. Still the configuration of the I/O pins for the different functions needs to be implemented in a specialized FB.

Every single pin is configured with the functions:

The configuration is done based on enums where the Parameter ID corresponds to the pin number. One special paramter (10.000) defines the total number of pins.

All registers are mapped into our address space. As we are running on linux, where we have a virtual address space, the addresses need to be converted. This allocation and convertion is done in this base driver:

To exchange the I/Os, the physical address for the exchange is specified in the driverSpecific value in the device description for each parameter. Those addresses are converted to their virtual counterparts in Update­Configuration.

Furthermore, UpdateConfiguration takes care about not configured I/Os. All I/O channels which are not configured are getting a driver specific value in the device description. This is then the physical address, which is converted by UpdateConfiguration to the virtual addresses, so that ReadInputs() and WriteOutputs() can copy the data easily with the stan­dard IoMgrCopyInputs()/-CopyOutputs() functions.