Skip to content

Commit

Permalink
Feat: Adding linux TX module type to close #23
Browse files Browse the repository at this point in the history
  • Loading branch information
Grabt234 committed Dec 20, 2023
1 parent 479f2f3 commit fb009b3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/ModuleTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ enum class ModuleType
ToJSONModule,
FFTModule,
WinMultiClientTCPRxModule,
WinMultiClientTCPTxModule
WinMultiClientTCPTxModule,
LinuxMultiClientTCPTxModule
};

class ModuleTypeStrings
Expand Down Expand Up @@ -61,6 +62,8 @@ class ModuleTypeStrings
// Status Reporting Modules
case ModuleType::WatchdogModule: return "WatchdogModule";

case ModuleType::LinuxMultiClientTCPTxModule: return "LinuxMultiClientTCPTxModule";

default: return "Unknown Module";
}
}
Expand Down

0 comments on commit fb009b3

Please sign in to comment.