From b10aa5d2e50b5cdb1a42c6445144e56a5a4ff39b Mon Sep 17 00:00:00 2001 From: thodkatz <thodkatz@gmail.com> Date: Sun, 18 Nov 2018 07:51:33 +0200 Subject: [PATCH] Formatting --- inc/Services/TestService.hpp | 4 ++-- src/main.cpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/inc/Services/TestService.hpp b/inc/Services/TestService.hpp index 1d367e95..a3704aa1 100644 --- a/inc/Services/TestService.hpp +++ b/inc/Services/TestService.hpp @@ -15,14 +15,14 @@ public: /** * TC[17,1] perform an are-you-alive connection test */ - void areYouAlive(Message & request); + void areYouAlive(Message &request); /** * TC[17,3] perform an on-board connection test * * @todo Only respond if we have the correct APID */ - void onBoardConnection(Message & request); + void onBoardConnection(Message &request); }; diff --git a/src/main.cpp b/src/main.cpp index 0ee6aeac..efa422e1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -17,7 +17,8 @@ int main() { char string[6]; packet.readString(string, 5); - std::cout << "Word: " << string << " " << packet.readBits(15) << packet.readBits(1) << std::endl; + std::cout << "Word: " << string << " " << packet.readBits(15) << packet.readBits(1) + << std::endl; std::cout << packet.readFloat() << " " << std::dec << packet.readSint32() << std::endl; // ST[17] test -- GitLab