12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * byte mod2db (byte tone);
- *
- * plc.h
- *
- *
- *--------------------------------------------------------------------*/
- #ifndef MOD2DB_SOURCE
- #define MOD2DB_SOURCE
- #include "../plc/plc.h"
- uint8_t const mod2db [PLC_BITS_PER_TONE] =
- {
- 0,
- 2,
- 4,
- 7,
- 10,
- 16,
- 22,
- 28,
- 36
- };
- #endif
|