public async Task <bool> EnableLog(int bus, int msgFilter1 = 0, int msgFilter2 = 0)
 {
     return(await Serial.OkCommand(CBTCommand.BusLog(bus, true, msgFilter1, msgFilter2)));
 }
 public async Task <bool> DisableLog(int bus)
 {
     return(await Serial.OkCommand(CBTCommand.BusLog(bus, false)));
 }