add first basic HK packet support

This commit is contained in:
2022-12-19 17:03:26 +01:00
parent 322620131f
commit c591092881
6 changed files with 55 additions and 8 deletions

View File

@ -0,0 +1,6 @@
use crate::hk::HkRequest;
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
pub enum Request {
HkRequest(HkRequest),
}