Index
- Eclipse IDE and JTAG
- Unlock STM32F103 with JTAG
- Flash firmware using Bluetooth
- Serial Port Bluetooth
- Serial Port Plot
- SM32F103C8T6 use 128kbytes flash
- Observer
- Shane Colton documentation and firmware
- Firmware
- Part 1: Field-Oriented
- Part 2: Field-Oriented
- Sensorless Pneu Scooter - part 1
- Sensorless Pneu Scooter - part 2
- Sensorless Pneu Scooter - part 3
- Texas Instruments videos
- Chinese controllers code
- Chinese balance group reference design
- Kerry D. Wong -- A Self-Balancing Robot
- Self balance bicycle
- PID
- LQR
- PID and LQR, MATLAB
- Steve Brunton videos
Eclipse IDE and JTAG
• Flash e Debug
• Plugin Font Size
Flash and Debug
NOTE: in 2016/11/05, this plugin do not work on Eclipse Neon, just on Eclipse Mars (4.5).
Link to the plugin that makes JTAG flash and debug working: http://opensource.zylin.com/zylincdt
Website of the plugin: http://opensource.zylin.com/embeddedcdt.html
OpenOCD
Flash and Debug
Plugin Font Size
Plugin name: Fontsize
https://marketplace.eclipse.org/content/fontsize
Link for instalation for Eclipse: http://plm.tt.com.pl/eclipse-plugins/updateSite/
Eclipse Ubuntu 16.04
Ubuntu 16.04 and Eclipse Mars menu problem
My OS is Ubuntu 16.04. I downloaded Eclipse Version: Mars.2 Release (4.5.2) and I had a problem with the main menu not showing.
I solved it by running Eclipse with UBUNTU_MENUPROXY=0 and the menu is visible but now I have another problem. Some of the options in the menu don't work.
For example the Window->Preferences only shows the General page and I can't select any other option.
Try to start Eclipse after editing your eclipse.ini file and tweaking the launcher entry like this:
--launcher.GTK_version
2
Example file:
-startup
plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar
--launcher.GTK_version
2
-product
org.eclipse.epp.package.cpp.product
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vmargs
-Dosgi.requiredJavaVersion=1.7
-XX:MaxPermSize=256m
-Xms256m
-Xmx1024m
See: http://stackoverflow.com/questions/36822242/eclipse-doesnt-work-with-ubuntu-16-04/36859485