NetSim Source Code Help v14.4
All 13 Components
 
Loading...
Searching...
No Matches
Aloha_enum.h
1/************************************************************************************
2* Copyright (C) 2023
3* TETCOS, Bangalore. India *
4
5* Tetcos owns the intellectual property rights in the Product and its content. *
6* The copying, redistribution, reselling or publication of any or all of the *
7* Product or its content without express prior written consent of Tetcos is *
8* prohibited. Ownership and / or any other right relating to the software and all *
9* intellectual property rights therein shall remain at all times with Tetcos. *
10* Author: Shashi Kant Suman *
11* ---------------------------------------------------------------------------------*/
12#ifndef _NETSIM_ALOHA_ENUM_H_
13#define _NETSIM_ALOHA_ENUM_H_
14#include "main.h"
15#include "EnumString.h"
16
17BEGIN_ENUM(ALOHA_Subevent)
18{
19 DECL_ENUM_ELEMENT_WITH_VAL(ALOHA_PACKET_ERROR,MAC_PROTOCOL_ALOHA*100),
20 DECL_ENUM_ELEMENT(ALOHA_PACKET_SUCCESS),
21}
22END_ENUM(ALOHA_Subevent);
23#endif
24