diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2018-08-06 19:24:17 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-06 19:24:17 +1000 |
commit | f1b06c5b9df96f079be99e1a88a9d4ab1daf6544 (patch) | |
tree | cdd3593cdf4570184d3847e086893b909f1f9936 /Demos/Device/ClassDriver/CCID | |
parent | 941bc1470d9fe8857352facb56f7a250c1809933 (diff) | |
parent | a877ffb6265ea3a18f1c95f61fdddc8b57c518cc (diff) | |
download | lufa-f1b06c5b9df96f079be99e1a88a9d4ab1daf6544.tar.gz lufa-f1b06c5b9df96f079be99e1a88a9d4ab1daf6544.tar.bz2 lufa-f1b06c5b9df96f079be99e1a88a9d4ab1daf6544.zip |
Merge pull request #135 from kidbomb/feature-ccid-get-set-parameters
CCID: Support for Get and Set Parameters
Diffstat (limited to 'Demos/Device/ClassDriver/CCID')
-rw-r--r-- | Demos/Device/ClassDriver/CCID/CCID.c | 54 |
1 files changed, 53 insertions, 1 deletions
diff --git a/Demos/Device/ClassDriver/CCID/CCID.c b/Demos/Device/ClassDriver/CCID/CCID.c index bb4c11c45..15d2852e4 100644 --- a/Demos/Device/ClassDriver/CCID/CCID.c +++ b/Demos/Device/ClassDriver/CCID/CCID.c @@ -193,7 +193,7 @@ uint8_t CALLBACK_CCID_IccPowerOff(USB_ClassInfo_CCID_Device_t* const CCIDInterfa } } -/** Event handler for the CCID_PC_to_RDR_GetSlotStatus. THis message is sent to the device +/** Event handler for the CCID_PC_to_RDR_GetSlotStatus. This message is sent to the device * whenever an application at the host wants to the get the current slot status * */ @@ -213,6 +213,58 @@ uint8_t CALLBACK_CCID_GetSlotStatus(USB_ClassInfo_CCID_Device_t* const CCIDInter } } +/** Event handler for the CCID_PC_to_RDR_SetParameters when T=0. This message is sent to + * the device whenever an application at the host wants to set the + * parameters for a given slot. + */ +uint8_t CALLBACK_CCID_SetParameters_T0(USB_ClassInfo_CCID_Device_t* const CCIDInterfaceInfo, + uint8_t slot, + uint8_t* const error, + USB_CCID_ProtocolData_T0_t* const t0) +{ + if (slot == 0) + { + //set parameters + memcpy(&CCIDInterfaceInfo->ProtocolData, t0, sizeof(USB_CCID_ProtocolData_T0_t)); + + *error = CCID_ERROR_NO_ERROR; + return CCID_COMMANDSTATUS_PROCESSEDWITHOUTERROR | CCID_ICCSTATUS_PRESENTANDACTIVE; + } + else + { + *error = CCID_ERROR_SLOT_NOT_FOUND; + return CCID_COMMANDSTATUS_FAILED | CCID_ICCSTATUS_NOICCPRESENT; + } +} + +/** Event handler for the CCID_PC_to_RDR_GetParameters when T=0. This message is sent to + * the device whenever an application at the host wants to get the current + * parameters for a given slot. + */ +uint8_t CALLBACK_CCID_GetParameters_T0(USB_ClassInfo_CCID_Device_t* const CCIDInterfaceInfo, + uint8_t slot, + uint8_t* const error, + uint8_t* const ProtocolNum, + USB_CCID_ProtocolData_T0_t* const t0) +{ + if (slot == 0) + { + + *ProtocolNum = CCID_PROTOCOLNUM_T0; + memcpy(t0, &CCIDInterfaceInfo->ProtocolData, sizeof(USB_CCID_ProtocolData_T0_t)); + + *ProtocolNum = CCID_PROTOCOLNUM_T0; + + *error = CCID_ERROR_NO_ERROR; + return CCID_COMMANDSTATUS_PROCESSEDWITHOUTERROR | CCID_ICCSTATUS_PRESENTANDACTIVE; + } + else + { + *error = CCID_ERROR_SLOT_NOT_FOUND; + return CCID_COMMANDSTATUS_FAILED | CCID_ICCSTATUS_NOICCPRESENT; + } +} + /** Event handler for the CCID_PC_to_RDR_XfrBlock. This message is sent to the device * whenever an application at the host wants to send a block of bytes to the device * THe device reply back with an array of bytes |