Skip to content
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

Change the members position to have the same order in c and c++ #1518

Merged
merged 4 commits into from Mar 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions include/led-matrix-c.h
Expand Up @@ -121,6 +121,14 @@ struct RGBLedMatrixOptions {
*/
int multiplexing;

/* Allow to use the hardware subsystem to create pulses. This won't do
* anything if output enable is not connected to GPIO 18.
* Corresponding flag: --led-hardware-pulse
*/
bool disable_hardware_pulsing;
bool show_refresh_rate; /* Corresponding flag: --led-show-refresh */
bool inverse_colors; /* Corresponding flag: --led-inverse */

/* In case the internal sequence of mapping is not "RGB", this contains the
* real mapping. Some panels mix up these colors.
*/
Expand All @@ -140,14 +148,6 @@ struct RGBLedMatrixOptions {

/** The following are boolean flags, all off by default **/

/* Allow to use the hardware subsystem to create pulses. This won't do
* anything if output enable is not connected to GPIO 18.
* Corresponding flag: --led-hardware-pulse
*/
char disable_hardware_pulsing;
char show_refresh_rate; /* Corresponding flag: --led-show-refresh */
char inverse_colors; /* Corresponding flag: --led-inverse */

/* Limit refresh rate of LED panel. This will help on a loaded system
* to keep a constant refresh rate. <= 0 for no limit.
*/
Expand Down