mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-09 00:13:41 +00:00
HAL layer for VNA functionality to use similar firmware on both hardware revisions
This commit is contained in:
parent
f4a6b24a8e
commit
6960498fcb
12 changed files with 164 additions and 87 deletions
|
|
@ -63,3 +63,8 @@ void communication_usb_input(const uint8_t *buf, uint16_t len) {
|
|||
Communication::Input(buf, len);
|
||||
}
|
||||
|
||||
bool Communication::SendWithoutPayload(Protocol::PacketType type) {
|
||||
Protocol::PacketInfo p;
|
||||
p.type = type;
|
||||
return Send(p);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue