Prusa-MMU-Private
PrusaMultiMaterialUpgradev3firmwareforMK3SMK4
cpu.h
Go to the documentation of this file.
1 #pragma once
3 
4 namespace hal {
5 
7 namespace cpu {
8 
9 #ifndef F_CPU
11 #define F_CPU (16000000ul)
12 #endif
13 
14 extern bool resetPending;
15 
17 void Init();
18 void Reset();
19 void Step();
20 
21 } // namespace cpu
22 } // namespace hal
void Init()
CPU init routines (not really necessary for the AVR)
Definition: cpu.cpp:17