rtek1000
rtek1000
> > > In file MPU6050_tockn.cpp the first `switch (accel)` should be `switch (gyros)` . Done! Thank you!
> > > in calcGyroOffsets function why did you read from 0x3B 14bytes, as I see you need only gyroscope data so you can read from 0x43 6 bytes. Let's...
> > > Thanks! > I wanna merge your code after fix some bugs. > Could you send me a Pull Request? Sorry for the delay my friend, I made...
Yes I agree with you, God invented, and each man makes a point of using a different configuration for each piece. I'll check the files, thanks for the support!
I ran the example "LCD_ID_readreg.ino", but the result of Mega2560 was different from STM32. With the help of an oscilloscope, I noticed that pins PB0 and PB1 do not work...
Sorry i made a mistake I reviewed the links and realized that I gave the wrong reference, it is not the PB0 and PB1 pin that is not working. The...
Working now! I had to disable the JTAG of this PB3 pin: I added the instruction below at the beginning of the subroutine "setup" > afio_cfg_debug_ports(AFIO_DEBUG_NONE); Source: http://www.stm32duino.com/viewtopic.php?t=1130#p13918 STM32: >...
Yes, the oscilloscope with STM32F103C8T6 has a very small bandwidth, But I work with repairing power supply, and I need to monitor two 30ms signals, so this need can be...
Many thanks for the attention, David! I will comment there on the project about this possibility of display, Surely others will be able to test this display in this project!
Yes! It works! But only if I disable the debug on PB3 pin. `afio_cfg_debug_ports(AFIO_DEBUG_NONE);` So, in the end, it was just the problem of the debug function. Sorry for bothering...