Kart

From FSI
(Difference between revisions)
Jump to: navigation, search
(Design environment)
(Design environment)
 
(26 intermediate revisions by 4 users not shown)
Line 5: Line 5:
 
It is a [[kart/gallery|home-made model car]] remotely controlled by a smartphone.
 
It is a [[kart/gallery|home-made model car]] remotely controlled by a smartphone.
  
 +
<!--
 
[[File:Kart I2C.jpg|150px|center|Demo Kart]]
 
[[File:Kart I2C.jpg|150px|center|Demo Kart]]
 +
-->
 +
[[File:Kart_batmobile.gif|center|Batmobile 2018]]
  
 
The work of the students can be summarized in four main tasks:
 
The work of the students can be summarized in four main tasks:
 
* design and assembly of the chassis and the body
 
* design and assembly of the chassis and the body
 
* analysis of the DC motor
 
* analysis of the DC motor
* [[Kart#FPGA_Design|configuration of the controlling FPGAs]]
+
* [[Kart#FPGA_Design|configuration of the controlling FPGA]]
 
* [[Kart#Android_App|completion and extension of the control GUI on the smartphone]]
 
* [[Kart#Android_App|completion and extension of the control GUI on the smartphone]]
  
Take a look at the [[kart/gallery|karts gallery]] !
+
Take a look at the [[kart/gallery|karts gallery]]!
  
 
== System Architecture ==
 
== System Architecture ==
 
 
The kart is controlled by a smartphone via Bluetooth.
 
The kart is controlled by a smartphone via Bluetooth.
  
 
=== Hardware ===
 
=== Hardware ===
The electronic is composed of an [[Kart/Daughterboard|FPGA daughterboard]] mounted on a dedicated [[Kart/Motherboard|motherboard]].
+
The electronics is composed of a general purpose [[Kart/Daughterboard|FPGA daughterboard]]
 +
mounted on a dedicated [[Kart/Motherboard|motherboard]]
 +
with 8&nbsp;[https://wiki.hevs.ch/fsi/index.php5/Kart/Motherboard#PMOD PMOD connectors].
  
An Honor10 Lite running Android acts as the interface for the user.
+
An Honor10 Lite smartphone running Android acts as the interface for the user.
  
=== Distributed controls ===
+
=== Bluetooth control ===
  
 
A [[Kart/Bluetooth|Bluetooth - USB dongle]] on the kart communicates via an [[kart/serial link|UART serial link]] with the FPGA.
 
A [[Kart/Bluetooth|Bluetooth - USB dongle]] on the kart communicates via an [[kart/serial link|UART serial link]] with the FPGA.
 
The control values are stored in a set of [[kart/serial link#Registers|registers]] accessed through a simple [[kart/serial link#Serial link protocol|protocol]].
 
The control values are stored in a set of [[kart/serial link#Registers|registers]] accessed through a simple [[kart/serial link#Serial link protocol|protocol]].
  
The design is separated over four different modules:
+
The design is separated into four different modules:
 
* A [[Kart/DC motor controller|DC motor controller]] is controlling the propulsion motor.
 
* A [[Kart/DC motor controller|DC motor controller]] is controlling the propulsion motor.
 
* A [[Kart/stepper motor controller|stepper motor controller]] is responsible for the Kart to turn.
 
* A [[Kart/stepper motor controller|stepper motor controller]] is responsible for the Kart to turn.
 
* A [[Kart/Sensors|sensor controller]] controls various I/Os (LEDs, buttons, range finder, hall sensors ...).
 
* A [[Kart/Sensors|sensor controller]] controls various I/Os (LEDs, buttons, range finder, hall sensors ...).
* A [[Kart/serial_link#Control_Registers|control registers manager]] retrieve and control various status information (bluetooth connection, hardware directions ...).
+
* A [[Kart/serial_link#Control_Registers|control registers manager]] retrieve and control various status information (Bluetooth connection, hardware directions ...).
  
 
== Tasks ==
 
== Tasks ==
  
The [[Media:Programming_Introduction.pdf|programming introduction]] gives an overview about the structure of the software/hardware and the students' tasks.
+
The [[Media:Programming_Introduction.pdf|RC Car introduction]] gives an overview of the structure of the software/hardware and the students' tasks.
 +
 
 
They comprise:
 
They comprise:
 
* [http://en.wikipedia.org/wiki/Field-programmable_gate_array FPGA] design for driving the hardware and reading the sensors
 
* [http://en.wikipedia.org/wiki/Field-programmable_gate_array FPGA] design for driving the hardware and reading the sensors
Line 43: Line 48:
  
 
The students receive the FPGA board preprogrammed with a functional solution and Android phones with a demo application.
 
The students receive the FPGA board preprogrammed with a functional solution and Android phones with a demo application.
This allows to start the development either with the FPGA design or the Android application.
+
This allows starting the development either with the FPGA design or the Android application.
  
 
=== FPGA Design ===
 
=== FPGA Design ===
Line 49: Line 54:
 
==== Design environment ====
 
==== Design environment ====
  
A [https://classroom.github.com/a/YV2oi5ct FPGA design environment] is available, based on:
+
The followings are required:
 
* [http://www.mentor.com/products/fpga/hdl_design/hdl_designer_series/ HDL designer] for graphical design entry
 
* [http://www.mentor.com/products/fpga/hdl_design/hdl_designer_series/ HDL designer] for graphical design entry
 
* [http://www.mentor.com/products/fv/modelsim/ ModelSim] for simulation
 
* [http://www.mentor.com/products/fv/modelsim/ ModelSim] for simulation
 
* [http://www.microsemi.com/products/fpga-soc/design-resources/design-software/libero-ide Libero IDE] for synthesis and programming
 
* [http://www.microsemi.com/products/fpga-soc/design-resources/design-software/libero-ide Libero IDE] for synthesis and programming
 +
* The design, to download either:
 +
** [https://classroom.github.com/a/8pDuBWSQ With Github]
 +
** [https://github.com/hei-synd-did/did-kart-ebs3/archive/refs/heads/main.zip As a ZIP]
  
 
{{TaskBox|content=
 
{{TaskBox|content=
For the smoothest experience, you can use Git directly by cloning the repository.
+
For the smoothest experience, and if you know how to, prefer using Git.
  
 
Otherwise, it is possible to download directly the corresponding <code>zip</code> and store it in you personal drive (<code>U:\</code>).
 
Otherwise, it is possible to download directly the corresponding <code>zip</code> and store it in you personal drive (<code>U:\</code>).
 
While working on the project, it may be preferable to copy it locally for a quicker experience.
 
While working on the project, it may be preferable to copy it locally for a quicker experience.
  
Do not forget to either commit and push your modifications to your Git repository or save the modified files on your drive !
+
Do not forget to either commit and push your modifications to your Git repository, or save the modified files back on your <code>U:\</code> drive!
 
}}
 
}}
 
{{WarningBox|content=
 
{{WarningBox|content=
Make sure that there is no space character in the full path to the project files.
+
Make sure there is no space character in the full projects path.
  
HDL may hang while booting or files not loading/saving correctly.
+
HDL may hang while booting or files not load/save correctly otherwise.
 
}}
 
}}
  
Line 78: Line 86:
 
* The [[Kart/stepper motor controller|stepper motor controller]] receives a '''prescaler''' and the '''desired angle''' and builds the coil controls signals.
 
* The [[Kart/stepper motor controller|stepper motor controller]] receives a '''prescaler''' and the '''desired angle''' and builds the coil controls signals.
 
* The [[Kart/Sensors|sensor controller]] manages I/O comprising '''hall sensors''' (to retrieve the driving speed) and a '''range finder''' (to get the distance from an obstacle).
 
* The [[Kart/Sensors|sensor controller]] manages I/O comprising '''hall sensors''' (to retrieve the driving speed) and a '''range finder''' (to get the distance from an obstacle).
 +
 +
==== Testing ====
 +
 +
In addition to the tests explained in the different modules, an [[Kart/Daughterboard#Testing|overall tester]] is available to test the whole board.
  
 
=== Android App ===
 
=== Android App ===
 
One goal is to implement an Android application that controls and monitors the kart.
 
One goal is to implement an Android application that controls and monitors the kart.
 
==== Introduction ====
 
 
The installable package of the (or rather a) solution can be found here: [[Media:Kart.apk|Kart.apk]]
 
  
 
==== Starting point ====
 
==== Starting point ====
  
* You can download the Kart project with the minimal interface here: [[Media:Kart.zip|Kart.zip]]
+
* You can download the Kart template project with the minimal interface here: [[http://kart-javadoc.hevs.ch/Kart.zip Kart.zip]]
* You can find the instructions how to open the project in Android Studio in the [[Media:Programming_Introduction.pdf|programming introduction]] presentation...
+
* You can find the instructions on how to open the project in Android Studio in the [[http://kart-javadoc.hevs.ch/RC%20Car%20Introduction.pdf RC Car introduction]] presentation.
 
* The online documentation of all Java classes that are at your disposition is [[http://kart-javadoc.hevs.ch here]]
 
* The online documentation of all Java classes that are at your disposition is [[http://kart-javadoc.hevs.ch here]]
 +
* The installable package of the (or rather a) solution can be found here: [[http://kart-javadoc.hevs.ch/KartSolution.apk KartSolution.apk]]
 
* If you need timers, please do not use Java standard Timer and TimerTask, we provide a dedicated Timer class in the package <b>ch.hevs.utils.Timer</b>.
 
* If you need timers, please do not use Java standard Timer and TimerTask, we provide a dedicated Timer class in the package <b>ch.hevs.utils.Timer</b>.
* To be informed when a register is modified by the kart (i.e. the hall sensor counter value has changed), your application has to implement the KartStatusRegisterListener interface. This will force your application to have a method (statusRegisterHasChanged) that will be called when a register value has changed. Don't forget to register your listener to the Kart (kart.addStatusRegisterListener(...)).
+
* To be informed when a sensor has a new value or a register is modified by the kart (i.e. the hall sensor counter value has changed), your application has to implement the KartListener interface. Don't forget to register your listener to the Kart (kart.addKartListener(...)).
  
 
==== Common Problems ====
 
==== Common Problems ====
 
* Don't block the main thread with an infinite loop
 
* Don't block the main thread with an infinite loop
 
* Don't change the orientation of the display during the execution, it can crash the BT communication. Do it in the Manifest.
 
* Don't change the orientation of the display during the execution, it can crash the BT communication. Do it in the Manifest.
 
==== Virtual Kart ====
 
If you need to test your Android application against a Kart and your Kart is either not build yet or not available at the moment, you can install the '''Virtual Kart''' application and use the [[Kart/Bluetooth|dongle]] directly in a USB port.
 
 
* Windows version [http://kart-javadoc.hevs.ch/Virtual%20Kart-2019.8-win64.exe here]
 
* macOS version [http://kart-javadoc.hevs.ch/Virtual%20Kart-2019.8-macOS.dmg here]
 
  
 
== Components ==
 
== Components ==
Line 114: Line 117:
 
Make sure to shut the circuit off while charging to avoid higher voltage on the 12V rail.
 
Make sure to shut the circuit off while charging to avoid higher voltage on the 12V rail.
  
The charge rate should be of around 0.05C => 120mA here.
+
The charge rate should be around 0.05C => 120mA here.
 
}}
 
}}
  
Line 126: Line 129:
  
 
The [[Kart/Daughterboard|daughterboard]] is equipped with an [https://www.mouser.ch/datasheet/2/268/Microsemi_DS0110_IGLOO_nano_Low_Power_Flash_FPGAs_-1592764.pdf Igloo AGLN250] FPGA in a VQ100 package.
 
The [[Kart/Daughterboard|daughterboard]] is equipped with an [https://www.mouser.ch/datasheet/2/268/Microsemi_DS0110_IGLOO_nano_Low_Power_Flash_FPGAs_-1592764.pdf Igloo AGLN250] FPGA in a VQ100 package.
The clock is rooted to the FPGA from a 10 MHz quartz.
+
The clock is routed to the FPGA from a 10 MHz quartz.
  
 
It is designed as an SODIMM-200 RAM stick to be easily interchangeable and plugged into various motherboards.
 
It is designed as an SODIMM-200 RAM stick to be easily interchangeable and plugged into various motherboards.
  
=== Sensors ===
+
=== Pmods ===
 +
 
 +
Motor drivers and sensors are connected to the motherboard via [[kart/Motherboard#PMOD|Pmods]].
  
 
The sensors connected to the I/Os of the motherboard are:
 
The sensors connected to the I/Os of the motherboard are:
Line 136: Line 141:
 
* 1 [[Kart/Sensors#Ultrasound_ranger|ultrasound ranger]]
 
* 1 [[Kart/Sensors#Ultrasound_ranger|ultrasound ranger]]
 
* 1 [[Kart/Sensors#End_of_turn_switch|end of turn]] contact switch
 
* 1 [[Kart/Sensors#End_of_turn_switch|end of turn]] contact switch
* 1 to 8 [[Kart/Sensors#LEDs_.2F_Low-consumption_outputs|LEDs or digital outputs]]
+
* up to 4 [[Kart/Sensors#LEDs_.2F_Low-consumption_outputs|LEDs or digital outputs]]
* 1 to 16 [[Kart/Sensors#Buttons_.2F_Digital_inputs|buttons or digital inputs]]
+
* up to 16 [[Kart/Sensors#Buttons_.2F_Digital_inputs|buttons or digital inputs]]
 +
<!--
 
* 0 to 4 [[kart/Sensors#Proximity_sensors|VCNL4000 I2C Distance/Ambience Light Sensor]]
 
* 0 to 4 [[kart/Sensors#Proximity_sensors|VCNL4000 I2C Distance/Ambience Light Sensor]]
 +
-->
  
 
== Additional Information ==
 
== Additional Information ==

Latest revision as of 12:56, 28 August 2023

Contents

The Kart module (214_Pr1) is a Summer School module for students between the 2nd and the 3rd semester. It is a home-made model car remotely controlled by a smartphone.

Batmobile 2018

The work of the students can be summarized in four main tasks:

Take a look at the karts gallery!

System Architecture

The kart is controlled by a smartphone via Bluetooth.

Hardware

The electronics is composed of a general purpose FPGA daughterboard mounted on a dedicated motherboard with 8 PMOD connectors.

An Honor10 Lite smartphone running Android acts as the interface for the user.

Bluetooth control

A Bluetooth - USB dongle on the kart communicates via an UART serial link with the FPGA. The control values are stored in a set of registers accessed through a simple protocol.

The design is separated into four different modules:

Tasks

The RC Car introduction gives an overview of the structure of the software/hardware and the students' tasks.

They comprise:

  • FPGA design for driving the hardware and reading the sensors
  • Android application development for the remote control

The students receive the FPGA board preprogrammed with a functional solution and Android phones with a demo application. This allows starting the development either with the FPGA design or the Android application.

FPGA Design

Design environment

The followings are required:


View-pim-tasks.png

For the smoothest experience, and if you know how to, prefer using Git.

Otherwise, it is possible to download directly the corresponding zip and store it in you personal drive (U:\). While working on the project, it may be preferable to copy it locally for a quicker experience.

Do not forget to either commit and push your modifications to your Git repository, or save the modified files back on your U:\ drive!

Dialog-warning.png

Make sure there is no space character in the full projects path.

HDL may hang while booting or files not load/save correctly otherwise.

The design is made using HDL Designer as it was the case during the previous semester's labs and project. The FPGAs are configured using the Libero IDE.

Modules designs

Three of the different modules must be completed:

  • The DC motor controller receives a prescaler and a speed value to build the corresponding PWM and direction signals.
  • The stepper motor controller receives a prescaler and the desired angle and builds the coil controls signals.
  • The sensor controller manages I/O comprising hall sensors (to retrieve the driving speed) and a range finder (to get the distance from an obstacle).

Testing

In addition to the tests explained in the different modules, an overall tester is available to test the whole board.

Android App

One goal is to implement an Android application that controls and monitors the kart.

Starting point

  • You can download the Kart template project with the minimal interface here: [Kart.zip]
  • You can find the instructions on how to open the project in Android Studio in the [RC Car introduction] presentation.
  • The online documentation of all Java classes that are at your disposition is [here]
  • The installable package of the (or rather a) solution can be found here: [KartSolution.apk]
  • If you need timers, please do not use Java standard Timer and TimerTask, we provide a dedicated Timer class in the package ch.hevs.utils.Timer.
  • To be informed when a sensor has a new value or a register is modified by the kart (i.e. the hall sensor counter value has changed), your application has to implement the KartListener interface. Don't forget to register your listener to the Kart (kart.addKartListener(...)).

Common Problems

  • Don't block the main thread with an infinite loop
  • Don't change the orientation of the display during the execution, it can crash the BT communication. Do it in the Manifest.

Components

Power supply

The main power is drawn from two 6 V / 2400 mAh battery packs in series The motherboard provides two connectors for the batteries, along with an extra one to wire an NiMh charger.

Dialog-warning.png

Make sure to shut the circuit off while charging to avoid higher voltage on the 12V rail.

The charge rate should be around 0.05C => 120mA here.

The 12V is reduced to a 5V rail through a buck converter.

The daughterboard is then fed with the 5V to provide an extra 3.3V rail.

Finally, an ADC converter provides the battery level as both the battery voltage and consumed current can be read from it.

FPGA board

The daughterboard is equipped with an Igloo AGLN250 FPGA in a VQ100 package. The clock is routed to the FPGA from a 10 MHz quartz.

It is designed as an SODIMM-200 RAM stick to be easily interchangeable and plugged into various motherboards.

Pmods

Motor drivers and sensors are connected to the motherboard via Pmods.

The sensors connected to the I/Os of the motherboard are:

Additional Information

Personal tools
Namespaces
Variants
Actions
Navigation
Modules / Projects
Browse
Toolbox