12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * byte mod2bits (byte tone);
- *
- * plc.h
- *
- *
- *--------------------------------------------------------------------*/
- #ifndef MOD2BITS_SOURCE
- #define MOD2BITS_SOURCE
- #include "../plc/plc.h"
- uint8_t const mod2bits [PLC_BITS_PER_TONE] =
- {
- 0,
- 1,
- 2,
- 3,
- 4,
- 6,
- 8,
- 10,
- 12
- };
- #endif
|