-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate/fpp v2 #2293
Integrate/fpp v2 #2293
Conversation
c8465d0
to
89eb7e2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! I scanned through it. Most of the changes are updates to symbol names to conform to the new conventions.
public ComLoggerGTestBase | ||
{ | ||
|
||
public: | ||
Tester(const char *const compName); | ||
ComLoggerTester(const char *const compName); |
Check warning
Code scanning / CppCheck
Single-parameter constructors should be marked explicit. Warning test
//! Construct a Tester | ||
Tester(InputMode::t inputMode); | ||
//! Construct a DeframerTester | ||
DeframerTester(InputMode::t inputMode); |
Check warning
Code scanning / CppCheck
Single-parameter constructors should be marked explicit. Warning test
@@ -37,7 +37,7 @@ | |||
// ---------------------------------------------------------------------- | |||
class MockDeframer : public DeframingProtocol { | |||
public: | |||
MockDeframer(Tester& parent); | |||
MockDeframer(DeframerTester& parent); |
Check warning
Code scanning / CppCheck
Single-parameter constructors should be marked explicit. Warning test
//! | ||
Tester(ConnectStatus::t bufferOutStatus = ConnectStatus::CONNECTED); | ||
DeframerTester(ConnectStatus::t bufferOutStatus = ConnectStatus::CONNECTED); |
Check warning
Code scanning / CppCheck
Constructors callable with one argument should be marked explicit. Warning test
@@ -29,13 +29,13 @@ | |||
//! Mock framing protocol | |||
class MockFramer : public FramingProtocol { | |||
public: | |||
MockFramer(Tester& parent); | |||
MockFramer(FramerTester& parent); |
Check warning
Code scanning / CppCheck
Single-parameter constructors should be marked explicit. Warning test
@@ -20,9 +20,9 @@ | |||
|
|||
public: | |||
|
|||
Tester(const char *const compName); | |||
LinuxTimeTester(const char *const compName); |
Check warning
Code scanning / CppCheck
Single-parameter constructors should be marked explicit. Warning test
3ac062f
to
6d45e8e
Compare
* Updating to v3.3.2 * Fixed else statement otherwise events and port invocations to gpio would happen on every schedIn while blinking is false * Removing redundant instruction (#39) * Clarify instructions (#40) * nasa/fprime#2239 * Reorder #include instruction * Clarify where to add parameterUpdated * Fix ... usage * Clarify gpio configuration * Update full-integration.md * Clarify testing * Update project-setup.md * Update component-implementation-1.md * minor changes * add newline * Change parameterUpdated scope * Migrating Led unit tests to v3.4.0 standards * Syncing docs and code * Merged version of nasa/fprime#2293 --------- Co-authored-by: Kevin F. Ortega <kevin.f.ortega@gmail.com> Co-authored-by: Thomas Boyer-Chammard <49786685+thomas-bc@users.noreply.github.com>
* Migrating MathSender unit tests to v3.4.0 standards * Migrating MathReceiver unit tests to v3.4.0 standards * Fixing UT writing * Merged version of nasa/fprime#2293
LeStarch:integrate/fpp-v2 |
LeStarch:integrate/fpp-v2 |
This PR at minimum requires a rename of |
Change Description
Integrate new FPP