Skip to content
Snippets Groups Projects
Commit bab01f0e authored by James Talbert's avatar James Talbert
Browse files

Get the SDK running again with the timer re-installed

parent 4704f4e0
No related branches found
No related tags found
No related merge requests found
...@@ -65,6 +65,15 @@ struct TimerDriver create_zybo_global_timer() { ...@@ -65,6 +65,15 @@ struct TimerDriver create_zybo_global_timer() {
return global_timer; return global_timer;
} }
struct TimerDriver create_zybo_axi_timer() {
struct TimerDriver axi_timer;
axi_timer.state = NULL;
axi_timer.reset = zybo_axi_timer_reset;
axi_timer.restart = zybo_axi_timer_restart;
axi_timer.read = zybo_axi_timer_read;
return axi_timer;
}
struct LEDDriver create_zybo_mio7_led() { struct LEDDriver create_zybo_mio7_led() {
struct LEDDriver mio7_led; struct LEDDriver mio7_led;
mio7_led.state = NULL; mio7_led.state = NULL;
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#include <sleep.h> #include <sleep.h>
#include <stdlib.h> #include <stdlib.h>
#include <xtmrctr.h>
#include <xgpiops.h> #include <xgpiops.h>
#include "xiicps.h" #include "xiicps.h"
#include "xparameters.h" #include "xparameters.h"
......
#include "hw_impl_zybo.h"
#define PL_CLK_CNTS_PER_USEC 100
int zybo_axi_timer_reset(struct TimerDriver *self) {
if (self->state == NULL) {
self->state = malloc(sizeof(XTmrCtr));
}
return XTmrCtr_Initialize(self->state, XPAR_AXI_TIMER_0_DEVICE_ID);
}
int zybo_axi_timer_restart(struct TimerDriver *self) {
XTmrCtr_Reset(self->state, 0);
XTmrCtr_Start(self->state, 0);
return 0;
}
int zybo_axi_timer_read(struct TimerDriver *self, u64 *us) {
// Returns the number of useconds
*us = XTmrCtr_GetValue(self->state, 0) / PL_CLK_CNTS_PER_USEC;
return 0;
}
...@@ -209,6 +209,41 @@ int test_zybo_motors() { ...@@ -209,6 +209,41 @@ int test_zybo_motors() {
return 0; return 0;
} }
/**
* Test for the AXI timer, using LEDDriver.
*
* This is essentially a basic "blink" program, using the mio7 LED
* on the Zybo board.
*
* Instructions:
* 1) Connect Zybo board to computer by USB cable.
* 2) Set the RUN_TESTS macro in main.c
* 3) Uncomment only this test in main.c
* 4) Run main.c
* 5) Observe MIO7 LED on board blinking at 1 second intervals.
*/
int test_zybo_axi_timer() {
struct TimerDriver axi = create_zybo_axi_timer();
struct LEDDriver led = create_zybo_mio7_led();
axi.reset(&axi);
led.reset(&led);
unsigned long time;
while (1) {
axi.restart(&axi);
time = 0;
while (time < 1000000) {
axi.read(&axi, &time);
}
led.turn_off(&led);
while (time < 2000000) {
axi.read(&axi, &time);
}
led.turn_on(&led);
}
}
/** /**
* Test for the Global timer, using LEDDriver. * Test for the Global timer, using LEDDriver.
* *
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include "type_def.h" #include "type_def.h"
#include "platform.h" #include "platform.h"
#define RUN_TESTS //#define RUN_TESTS
/** /**
* Create the hardware drivers, and place them on the hardware struct. * Create the hardware drivers, and place them on the hardware struct.
...@@ -29,6 +29,7 @@ int setup_hardware(hardware_t *hardware) { ...@@ -29,6 +29,7 @@ int setup_hardware(hardware_t *hardware) {
hardware->comm = create_zybo_comm(&hardware->uart_0); hardware->comm = create_zybo_comm(&hardware->uart_0);
hardware->gps = create_zybo_gps(&hardware->uart_1); hardware->gps = create_zybo_gps(&hardware->uart_1);
hardware->global_timer = create_zybo_global_timer(); hardware->global_timer = create_zybo_global_timer();
hardware->axi_timer = create_zybo_axi_timer();
hardware->mio7_led = create_zybo_mio7_led(); hardware->mio7_led = create_zybo_mio7_led();
hardware->sys = create_zybo_system(); hardware->sys = create_zybo_system();
hardware->i2c_0 = create_zybo_i2c(0); hardware->i2c_0 = create_zybo_i2c(0);
...@@ -47,8 +48,8 @@ int main() ...@@ -47,8 +48,8 @@ int main()
#ifdef RUN_TESTS #ifdef RUN_TESTS
//test_zybo_mio7_led_and_system(); //test_zybo_mio7_led_and_system();
//test_zybo_i2c(); //test_zybo_i2c();
test_zybo_i2c_imu(); //test_zybo_i2c_imu();
//test_zybo_i2c_px4flow(); test_zybo_i2c_px4flow();
//test_zybo_i2c_lidar(); //test_zybo_i2c_lidar();
//test_zybo_i2c_all(); //test_zybo_i2c_all();
//test_zybo_rc_receiver(); //test_zybo_rc_receiver();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment