Skip to content

Commit

Permalink
increasing preset/library size, not yet complete
Browse files Browse the repository at this point in the history
  • Loading branch information
neroroxxx committed Sep 13, 2020
1 parent 7b849be commit 640091c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utility/BMC-Def.h
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ const char bmcAlphabet[26] = {'A','B','C','D','E','F','G','H','I','J','K','L','M
#define BMC_MERGE_BYTES3(a,b,c) ((c & 0xFF) | ((b & 0xFF)<<8) | ((a & 0xFF)<<16))
#define BMC_MERGE_BYTES4(a,b,c,d) ((d & 0xFF) | ((c & 0xFF)<<8) | ((b & 0xFF)<<16) | ((a & 0xFF)<<24))

#define BMC_EVENT_TO_PRESET_NUM(e) ((bmcPreset_t) (e & 0x3FF))
#define BMC_EVENT_TO_LIBRARY_NUM(e) ((bmcLibrary_t) (e & 0x3FF))
#define BMC_EVENT_TO_PRESET_NUM(e) ((bmcPreset_t) ((e) & 0x3FF))
#define BMC_EVENT_TO_LIBRARY_NUM(e) ((bmcLibrary_t) ((e) & 0x3FF))

// Supported chipsets for Mux In
#define BMC_MUX_IN_CHIPSET_OTHER 1
Expand Down

0 comments on commit 640091c

Please sign in to comment.