UHSDR/UHSDR-active-devel/mchf-eclipse/drivers/audio/softdds/dds_table.h

25 lines
1.3 KiB
C
Raw Permalink Normal View History

2022-08-24 08:39:13 +02:00
/* -*- mode: c; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4; coding: utf-8 -*- */
/************************************************************************************
** **
** mcHF QRP Transceiver **
** K Atanassov - M0NKA 2014 **
** **
**---------------------------------------------------------------------------------**
** **
** File name: **
** Description: **
** Last Modified: **
** Licence: GNU GPLv3 **
************************************************************************************/
#ifndef __DDS_TABLE_H
#define __DDS_TABLE_H
#define DDS_TBL_BITS 10
#define DDS_TBL_SIZE (1 << DDS_TBL_BITS) // 10 = 1024
extern const int16_t DDS_TABLE[DDS_TBL_SIZE];
#endif