Commit 5ab9bd95 authored by Bartosz Podrygajlo's avatar Bartosz Podrygajlo

Add `const` to input argument in PHY_ofdm_mod

parent b92ee59d
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
@param nb_prefix_samples The number of prefix/suffix/zero samples @param nb_prefix_samples The number of prefix/suffix/zero samples
@param etype Type of extension (CYCLIC_PREFIX,CYCLIC_SUFFIX,ZEROS) @param etype Type of extension (CYCLIC_PREFIX,CYCLIC_SUFFIX,ZEROS)
*/ */
void PHY_ofdm_mod(int *input, void PHY_ofdm_mod(const int *input,
int *output, int *output,
int fftsize, int fftsize,
unsigned char nb_symbols, unsigned char nb_symbols,
......
...@@ -122,7 +122,7 @@ void nr_normal_prefix_mod(c16_t *txdataF, c16_t *txdata, uint8_t nsymb, const NR ...@@ -122,7 +122,7 @@ void nr_normal_prefix_mod(c16_t *txdataF, c16_t *txdata, uint8_t nsymb, const NR
} }
void PHY_ofdm_mod(int *input, /// pointer to complex input void PHY_ofdm_mod(const int *input, /// pointer to complex input
int *output, /// pointer to complex output int *output, /// pointer to complex output
int fftsize, /// FFT_SIZE int fftsize, /// FFT_SIZE
unsigned char nb_symbols, /// number of OFDM symbols unsigned char nb_symbols, /// number of OFDM symbols
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment