Skip to content

Commit

Permalink
optimize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Consti10 committed Aug 13, 2023
1 parent aa4431a commit ca2f0b5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion executables/benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@
#include "../src/FECStream.h"
#include "../src/HelperSources/RandomBufferPot.hpp"
#include "../src/HelperSources/SchedulingHelper.hpp"
#include "../src/external/fec/fec_base.h"

// Test the FEC encoding / decoding and Encryption / Decryption performance (throughput) of this system
// Test the FEC encoding / decoding and Encryption / Decryption performance
// (throughput) of this system
// Gives a hint on max possible FEC K target(s) for this platform
// NOTE: Does not take WIFI card throughput into account

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Created by consti10 on 08.08.23.
//

#ifndef WIFIBROADCAST_UINT64SEQNRHELPER_H
#define WIFIBROADCAST_UINT64SEQNRHELPER_H
#ifndef WIFIBROADCAST_UINT64SEQNRHELPER_HPP
#define WIFIBROADCAST_UINT64SEQNRHELPER_HPP

#include <atomic>
#include <cmath>
Expand Down Expand Up @@ -129,4 +129,4 @@ class UINT64SeqNrHelper {
int m_card_index=0;
};

#endif // WIFIBROADCAST_UINT64SEQNRHELPER_H
#endif // WIFIBROADCAST_UINT64SEQNRHELPER_HPP
2 changes: 1 addition & 1 deletion src/WBTxRx.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "SignalQualityAccumulator.hpp"
#include "TimeHelper.hpp"
#include "UINT16SeqNrHelper.hpp"
#include "UINT64SeqNrHelper.h"
#include "UINT64SeqNrHelper.hpp"

/**
* This class exists to provide a clean, working interface to create a
Expand Down

0 comments on commit ca2f0b5

Please sign in to comment.