Skip to content

Commit 0466587

Browse files
committed
change i2c addresses to not conflict
1 parent 65ea409 commit 0466587

File tree

3 files changed

+3
-3
lines changed
  • software/apps/tests

3 files changed

+3
-3
lines changed

software/apps/tests/api_energy_test/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#include "signpost_api.h"
1212

13-
static const uint8_t random_i2c_address = 0x50;
13+
static const uint8_t random_i2c_address = 0x40;
1414

1515
int main (void) {
1616
printf("\n\n[Test] API: Energy\n");

software/apps/tests/api_networking_test/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ int main (void) {
2424
//
2525
// Initializations for the rest of the signpost
2626
do {
27-
rc = signpost_initialization_module_init(0x28, NULL);
27+
rc = signpost_initialization_module_init(0x29, NULL);
2828
if (rc < 0) {
2929
printf(" - Error initializing module (code: %d). Sleeping 5s.\n", rc);
3030
delay_ms(5000);

software/apps/tests/api_simple_networking_test/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ int main (void) {
2424
//
2525
// Initializations for the rest of the signpost
2626
do {
27-
rc = signpost_initialization_module_init(0x28, NULL);
27+
rc = signpost_initialization_module_init(0x27, NULL);
2828
if (rc < 0) {
2929
printf(" - Error initializing module (code: %d). Sleeping 5s.\n", rc);
3030
delay_ms(5000);

0 commit comments

Comments
 (0)