lots of code copied over, things filled in to hopefully get the LED matrix lighting up. untested.
22 lines
228 B
C
22 lines
228 B
C
/*
|
|
* i8atan2.h
|
|
* begin 20190611 true
|
|
*
|
|
* copied and fixed up from teh internets
|
|
*/
|
|
|
|
#ifndef INC_I8ATAN2_H_
|
|
#define INC_I8ATAN2_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
int8_t i8atan2(int8_t y, int8_t x);
|
|
|
|
|
|
|
|
#endif /* INC_I8ATAN2_H_ */
|