Skip to content

Commit

Permalink
Fix build with nRF52833 when advertising extensions are enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
h2zero committed Jun 28, 2024
1 parent 1a47c85 commit e31ba39
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cores/nRF5/nimble_config/ext_nimble_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@

#ifndef min
#define min(a, b) ((a)<(b)?(a):(b))
#endif

#ifndef max
#define max(a, b) ((a)>(b)?(a):(b))
#endif

0 comments on commit e31ba39

Please sign in to comment.