| 534 | } |
| 535 | |
| 536 | void DLLFUNCCALL IDMFC_StartPacket(IDMFC *instance, uint8_t *data, uint8_t id, int *count) { |
| 537 | assert(instance != NULL); |
| 538 | instance->StartPacket(data, id, count); |
| 539 | } |
| 540 | |
| 541 | void DLLFUNCCALL IDMFC_SendPacket(IDMFC *instance, uint8_t *data, int size, int destination) { |
| 542 | assert(instance != NULL); |
nothing calls this directly
no test coverage detected