diff --git a/sw/simulator/nps/nps_ivy.c b/sw/simulator/nps/nps_ivy.c index 354755d87f..a0fc916997 100644 --- a/sw/simulator/nps/nps_ivy.c +++ b/sw/simulator/nps/nps_ivy.c @@ -34,7 +34,7 @@ static void on_DL_SETTING(IvyClientPtr app __attribute__ ((unused)), uint8_t index = atoi(argv[2]); float value = atof(argv[3]); DlSetting(index, value); - DOWNLINK_SEND_DL_VALUE(&index, &value); + DOWNLINK_SEND_DL_VALUE(DOWNLINK_TRANSPORT, &index, &value); printf("setting %d %f\n", index, value); }