Setup: Olympe 7.2, Python, Raspberry PI 4.
I’m using this construct in order to control the logging of the SDK:
olympe.log.update_config({"loggers": {"olympe": {"level": args.olympe_log_level.upper()}}})
I’m providing the desired log level by command line argument. That works.
However, after a drone.connect()
I’m repeatedly receiving these warnings, which I am - at least I’m believing that - not provoking with any action, even with the simplest thinkable app:
drone = olympe.Drone(DRONE_IP)
drone.connect()
sleep(10)
drone.disconnect()
2022-06-03 11:39:08,098 [WARNING] olympe.drone.ANAFI-G134295 - _recv_cmd_cb - Unknown message id 0xa1000001
2022-06-03 11:39:08,101 [WARNING] olympe.drone.ANAFI-G134295 - _recv_cmd_cb - Unknown message id 0xa2000005
2022-06-03 11:39:08,101 [WARNING] olympe.drone.ANAFI-G134295 - _recv_cmd_cb - Unknown message id 0xa2000004
2022-06-03 11:39:08,102 [WARNING] olympe.drone.ANAFI-G134295 - _recv_cmd_cb - Unknown message id 0xa3000004
2022-06-03 11:39:08,123 [WARNING] olympe.drone.ANAFI-G134295 - _recv_cmd_cb - Unknown message id 0x9d000009
2022-06-03 11:39:08,124 [WARNING] olympe.drone.ANAFI-G134295 - _recv_cmd_cb - Unknown message id 0xa5000002
2022-06-03 11:39:08,127 [WARNING] olympe.drone.ANAFI-G134295 - _recv_cmd_cb - Unknown message id: 18 in common.CommonState
2022-06-03 11:39:08,262 [WARNING] olympe.drone.ANAFI-G134295 - _recv_cmd_cb - Unknown message id 0x9f000001
2022-06-03 11:39:08,265 [WARNING] olympe.drone.ANAFI-G134295 - _recv_cmd_cb - Unknown message id 0xa5000001
Anybody able to comment on these warnings?
TIA
EDIT: Initially mentioned second problem was mine, sorry.
Regards