Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: main.cpp
- Revision:
- 8:10162f709930
- Parent:
- 7:f10513577d4c
--- a/main.cpp Sun Jul 15 21:55:27 2018 +0000
+++ b/main.cpp Wed Jul 18 18:49:46 2018 +0000
@@ -380,9 +380,11 @@
}
-
+
+int print_counter = 0;
void control()
{
+ print_counter ++;
if(((spi_command.flags[0]&0x1)==1) && (enabled==0)){
enabled = 1;
@@ -501,9 +503,15 @@
//PackAll();
//WriteAll();
}
+
spi_data.checksum = xor_checksum((uint32_t*)&spi_data,14);
for(int i = 0; i < DATA_LEN; i++){
tx_buff[i] = ((uint16_t*)(&spi_data))[i];}
+
+ if(print_counter>100){
+ print_counter = 0;
+ printf("%3f %3f %3f\n\r", l2_control.a.t_ff, l2_control.h.t_ff, l2_control.k.t_ff);
+ }
}