I am communicating with an irradiation sensor using minimalmodbus in Python 3.x. I can stablish a communication and read the registers of the sensor. The Baudrate of the sensor is 9600 but I want to change it to 38400.
The datasheet of the sensor says that it can be done by using the function code 0x46 and the subfunction 06.
I've found that minimalmodbus only uses function codes 1,2,3,4,5,6,15 and 16, and I haven't found any possibility to use sub function.
Is there any option for me to change the baudrate or should I change minimalmodbus for another library as pyModbus?