repetier dev Bluetooth serial
in Bug Reports
hello
I updated my 3d printer firmware from 0.92 to dev version and I added some custom events to include some new features
the problem is that I think that the Bluetooth serial function is not working in dev version
I tested both 0.92 and dev version on the same homemade controller to find that the Bluetooth serial in dev version don't work
is there any solution for this ?
thank you
I updated my 3d printer firmware from 0.92 to dev version and I added some custom events to include some new features
the problem is that I think that the Bluetooth serial function is not working in dev version
I tested both 0.92 and dev version on the same homemade controller to find that the Bluetooth serial in dev version don't work
is there any solution for this ?
thank you
Comments
the same hardware was working well with the 0.92 version
I noticed something maybe it is helpful:
I used platform io with microsoft visual studio code software to compile the firmware instead of arduino ide and that gives me some detailed warnings and here they are
and again these warnings didn't showed up with the 0.92 version
I tried a Bluetooth adapter and esp8266 and even usb to serial module
as before in all ways the host connects but no data received it shows 1 command waiting
but I found that if I use v 0.92 with EXTERNALSERIAL enabled the problem accures
so is the EXTERNALSERIAL used by default in the dev version ?
is there a way to stop using it and use the internal serial ?
#if NEW_COMMUNICATION && defined(BLUETOOTH_SERIAL) && BLUETOOTH_SERIAL > 0
#undef EXTERNALSERIAL
#define EXTERNALSERIAL
#endif
which is hopefully triggered by your config enabling EXTERNALSERIAL, which is still a requirement when using other uart then uart0. The errors in compilation come from not using external serial.
BTW: Arduino IDE has also an option for verbose warnings.
if I comment this line the error I mentioned before disappears
I did not get what you meant by "Just register you are using 8 bit processor. "
can you please explain more
https://forum.repetier.com/discussion/comment/29359#Comment_29359