#pragma once
#include "msg.h"
#include "cmd.h"

void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  CMD::init();
  MSG::begin();
}


void loop() {
  MSG::loop();
  CMD::next();
}