fifo enhancement #57

Merged
gaisser merged 3 commits from KSat/fsfw:mueller_fifo_enhancement into master 2020-05-25 14:48:29 +02:00
Owner

fixes #56

fixes #56
muellerr added the
feature
label 2020-04-24 17:09:55 +02:00
gaisser self-assigned this 2020-05-05 17:33:07 +02:00
Owner

We could avoid code duplications with implementing pop as:

	ReturnValue_t pop() {
	    T value;
        return this->retrieve(&value);
	}

What do you think?

We could avoid code duplications with implementing pop as: ``` C++ ReturnValue_t pop() { T value; return this->retrieve(&value); } ``` What do you think?
Author
Owner

Nice. Will integrate.

Nice. Will integrate.
Author
Owner

change integrated

change integrated
gaisser closed this pull request 2020-05-25 14:48:29 +02:00
gaisser deleted branch mueller_fifo_enhancement 2020-05-25 14:54:54 +02:00
Sign in to join this conversation.
No description provided.