Commit 12385fbd authored by Sandeep Kumar's avatar Sandeep Kumar

changes to handle different proc in callers

parent ba776254
This diff is collapsed.
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
*/ */
#include <stdint.h> #include <stdint.h>
#include "PHY/defs.h"
/// Macro for IF4 packet type /// Macro for IF4 packet type
#define IF4_PACKET_TYPE 0x080A #define IF4_PACKET_TYPE 0x080A
...@@ -175,12 +176,12 @@ struct IF4_prach_header { ...@@ -175,12 +176,12 @@ struct IF4_prach_header {
typedef struct IF4_prach_header IF4_prach_header_t; typedef struct IF4_prach_header IF4_prach_header_t;
#define sizeof_IF4_prach_header_t 12 #define sizeof_IF4_prach_header_t 12
void gen_IF4_dl_header(IF4_dl_header_t*, eNB_rxtx_proc_t*); void gen_IF4_dl_header(IF4_dl_header_t*, int, int);
void gen_IF4_ul_header(IF4_ul_header_t*, eNB_rxtx_proc_t*); void gen_IF4_ul_header(IF4_ul_header_t*, int, int);
void gen_IF4_prach_header(IF4_prach_header_t*, eNB_proc_t*); void gen_IF4_prach_header(IF4_prach_header_t*, int, int);
void send_IF4(PHY_VARS_eNB*, eNB_rxtx_proc_t*, uint16_t); void send_IF4(PHY_VARS_eNB*, int, int, uint16_t);
void recv_IF4(PHY_VARS_eNB*, eNB_rxtx_proc_t*, uint16_t*, uint32_t*); void recv_IF4(PHY_VARS_eNB*, int, int, uint16_t*, uint32_t*);
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