Skip to content

nibbler79/Mowgli

 
 

Repository files navigation

Mowgli

About

This repo tracks my progress in reverse engineering the Yardforce GForce mainbord as used in the Yardforce 500 (and others) Mower Robots.

In the end in would like to use it with OpenMower but without having to use that projects mainboard, instead recycling as much hardware as possible from the original GForce mainboard. There should be no irreversible modifications to the GForce board required.

Updates

see Updates

Safety

The custom firmware has no protections - no tilt sensing, no stop buttons will work. If you stick your finger in the wrong place, you will lose it.

  • Remove the razor blades
  • Dont be stupid
  • Dont blame me for your lost finger

Whats done ?

  • Basic overview of the mainboard, Datasheets for ICs
  • Motor Drivers for both Drive Motors and Blade Motor can be controlled
  • Mainboard (GForce) Firmware dump and restore via an ST Link or other (e.g. JLink Segger) tools
  • Panel (GForce) Firmware dump and restore via an ST Link or other (e.g. JLink Segger) tools
  • Demo Python code to control the Mower via a Joystick (needs "test_code" STM32 code flashed)
  • ROS Serial node via CDC USB Port with full hardware support
  • Serial debugging on the unused (red) J18 header
  • Software I2C on the unusued (red) J18 header - used for external IMU
  • Raspi, IMU, GPS Mounting Options
  • onboard Buzzer
  • onboard IMU (accelerometer) for tilt protection
  • Safety switches (Hall Sensors) for STOP button

TODO

  • Move all UART functions use DMA as HAL_IT is a seriously broken API
  • Publish Blade Motor state
  • (Probably) Shift all the published topics to some common base such as /mowgli/

rosserial node

Published Topics

  • /battery_voltage - std_msgs::Float32 (current Battery Voltage)
  • /charge_voltage - std_msgs::Float32 (PWM controlled Charge Voltage if plugged in)
  • /charge_current - std_msgs:Float32 (still a bit unclear how that works, needs more Kicad'ding)
  • /charge_pwm - std_msgs::Int16 (PWM value for Charge Voltage)
  • /charging_state - std_msgs::Bool (True/False depending on if the bot is charging)
  • /odom - nav_msgs::Odometry (Odometry messages, from motor controller feedback)
  • /left_encoder_ticks & /right_encoder_ticks - std_msgs::UInt21 (Accumulated Raw encoder values)
  • /imu_onboard/data_raw - sensor_msgs::Imu - onboard accelerometer data (no gyro, no mag !)
  • /imu_onboard/temp - sensor_msgs::Temperature - onboard accerlerometer temperature

in case a supported I2C IMU is connected to J18

  • /imu/data_raw - sensor_msgs::Imu - external IMU data (acceleration, gyro)
  • /imu/mag - sensor_msgs::MagneticField - external IMU data (compass)

Currently only the Pololu IMU 10v5 is supported, but any I2C or SPI IMU should work.

Planned (TODO) Topics

  • /blade_state - std_msgs::Bool

Subscribers

  • /cmd_vel - geometry_msgs::Twist (compatible with teleop twist messages, so you can drive the bot)
  • /cmd_blade_on - std_msgs::Bool (set True to turn on the Blade Motor)
  • /cmd_blade_off - std_msgs::Bool (set True to turn off the Blade Motor)
  • /cmd_reboot- std_msgs::Bool (set True to reboot the STM32)

Serial Debugging

Serial Debug for ros_usbnode

About

YardForce GForce Mainboard RE

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 57.0%
  • C 40.3%
  • Processing 1.6%
  • Other 1.1%