Prusa-MMU-Private
PrusaMultiMaterialUpgradev3firmwareforMK3SMK4
serial.h
Go to the documentation of this file.
1 #pragma once
3 #include <stdint.h>
4 
5 namespace modules {
6 
7 namespace serial {
8 
9 bool WriteToUSART(const uint8_t *src, uint8_t len);
10 
11 bool Available();
12 
13 uint8_t ConsumeByte();
14 
15 } // namespace serial
16 
17 } // namespace modules
The modules namespace contains models of MMU's components.
Definition: command_base.h:8