Hi, I found there will be error if using "-" in topic string. Could you help to check this?
topic = dds_create_topic(participant, &OGM_Map_Struct_desc, "uos-gps", qos, NULL);
this will get error message :
1607564938.948660 [] Helloworld: dds_create_topic: Bad Parameter
but this will be fine:
topic = dds_create_topic(participant, &OGM_Map_Struct_desc, "uos_gps", qos, NULL);
The test case is at here: #653
Thanks very much~