blob: 6332a38b6ee493fd6cb70dd5cb07f6dcd399cf53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (c) 2018 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com>
*
* libsstv is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#ifndef _LUTS_H_
#define _LUTS_H_
#include <stdint.h>
#include <stddef.h>
extern int8_t SSTV_SIN_INT10_INT8[1024];
extern int16_t SSTV_SIN_INT10_INT16[1024];
#endif
|