add linear lookup

This commit is contained in:
Harald Pichler 2016-01-25 20:48:30 +01:00
parent 681c514a18
commit f2fe41017b
3 changed files with 1057 additions and 2 deletions

View file

@ -0,0 +1,15 @@
#ifndef klin_h_
#define klin_h_
#include <avr/pgmspace.h>
#include <inttypes.h>
/**
* autogenerated lookup function for Daumengas
* @param i x value
* @return f(i), or 6666 if i is out of range
*/
uint16_t lookup_Daumengas(uint16_t i);
#endif /* klin_h_ */