lf config alone shows current config

This commit is contained in:
Philippe Teuwen 2019-10-03 22:11:16 +02:00
commit 42cb2a32e8
3 changed files with 15 additions and 3 deletions

View file

@ -685,6 +685,10 @@ static void PacketReceived(PacketCommandNG *packet) {
setT55xxConfig(packet->oldarg[0], (t55xx_configurations_t *) packet->data.asBytes);
break;
}
case CMD_LF_SAMPLING_GET_CONFIG: {
printConfig();
break;
}
case CMD_LF_SAMPLING_SET_CONFIG: {
setSamplingConfig((sample_config *) packet->data.asBytes);
break;