Mitsubishi Electric MELSEC iQ-R C Series Programming Manual page 173

Controller module
Table of Contents

Advertisement

CCPU_GetDotMatrixLED_ISR
This function acquires the value displayed on the dot matrix LED of a C Controller module, and stores it to the LED data
storage destination (pcData).
Format
short CCPU_GetDotMatrixLED_ISR (char* pcData, unsigned long ulDataSize)
Argument
Argument
Name
pcData
LED data storage destination
ulDataSize
LED data storage destination size
Description
• This function acquires the value displayed on the dot matrix LED, and stores it in the LED data storage destination
(pcData).
• It also acquires the information for the size specified to the LED data storage destination size (ulDataSize).
• The value displayed on the dot matrix LED is stored in the LED data storage destination (pcData) as shown below.
Dot matrix LED
pcData[0] to pcData[19]: Data of the dot matrix LED (720)
The value displayed in the following format is acquired.
Data format for each column: Bit pattern in which '0' is for the upper one bit, and '1' (when LED is ON) or '0' (when LED is
OFF) is for lower seven bits
Ex.
The bit pattern shown below is displayed on the dot matrix LED:
1st column
2nd column
5th column
1st column: 0000 0111b = 07H → pcData[0] = 0x07
2nd column: 0000 1100b = 0cH → pcData[1] = 0x0c
3rd column: 0001 0100b = 14H → pcData[2] = 0x14
4th column: 0010 0100b = 24H → pcData[3] = 0x24
5th column: 0111 1111b = 7fH → pcData[4] = 0x7f
6th column to 20th column: 0000 0000b = 00H → pcData[5] to pcData[19] = 0x00
Do not execute this function in a routine other than an interrupt routine.
Description
Specify the storage destination of LED data.
Specify the LED data storage destination size in byte units.
3 DETAILS OF FUNCTION
3.2 C Controller module dedicated functions for ISR
3
IN/OUT
OUT
IN
171

Advertisement

Table of Contents
loading

Table of Contents