123456789101112131415161718192021222324252627282930 |
- #include "CM_LIB.h"
- #include "CM_GPA.h"
- uint8_t cm_SetUserZone(uint8_t ucZoneNumber, uint8_t ucAntiTearing)
- {
- uint8_t ucReturn;
-
- ucCM_InsBuff[0] = 0xb4;
- if (ucAntiTearing) ucCM_InsBuff[1] = 0x0b;
- else ucCM_InsBuff[1] = 0x03;
- ucCM_InsBuff[2] = ucZoneNumber;
- ucCM_InsBuff[3] = 0x00;
-
- cm_GPAGen(ucZoneNumber);
-
- if ((ucReturn = CM_LOW_LEVEL.SendCommand(ucCM_InsBuff))!= SUCCESS) return ucReturn;
-
-
- ucCM_UserZone = ucZoneNumber;
- ucCM_AntiTearing = ucAntiTearing;
-
- return SUCCESS;
- }
|