remove const for phy

This commit is contained in:
Hideaki Tai 2021-01-02 16:41:45 +09:00
parent 7ba521db62
commit 29cb184a13

View File

@ -234,7 +234,7 @@ namespace arx {
send_packet(ip);
}
void physical(const uint8_t i) const { phy = constrain(i, 0, 3); }
void physical(const uint8_t i) { phy = constrain(i, 0, 3); }
uint8_t sequence() const { return seq; }