Speeduino
Loading...
Searching...
No Matches
updates.h
Go to the documentation of this file.
1#ifndef UPDATES_H
2#define UPDATES_H
3
4#include "table3d.h"
5
6void doUpdates(void);
7void multiplyTableValue(uint8_t pageNum, uint8_t multiplier); //Added to update the table values. Multiplies the value by the multiplier
8void divideTableValue(uint8_t pageNum, uint8_t divisor); //Added to update the table values. Divide the value by divisor
9
10#endif
3D table data types and functions
void multiplyTableValue(uint8_t pageNum, uint8_t multiplier)
Definition updates.cpp:880
void divideTableValue(uint8_t pageNum, uint8_t divisor)
Definition updates.cpp:889
void doUpdates(void)
Definition updates.cpp:99