summaryrefslogtreecommitdiff
path: root/src/app/transactiontest/main.cc
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2020-08-31 15:24:50 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2020-08-31 15:24:50 +0200
commitae3acc651a459500bc11ba938607875c6ae21f3a (patch)
tree3a1d74bad3a4f7ebc3b5bb8bf6a021b0c642b092 /src/app/transactiontest/main.cc
parentb85efb34524451b47146badfc2fd25bef8d90926 (diff)
msp430fr: rename spi_b to spi to be consistent with other architectures
Diffstat (limited to 'src/app/transactiontest/main.cc')
-rw-r--r--src/app/transactiontest/main.cc11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/app/transactiontest/main.cc b/src/app/transactiontest/main.cc
index 1ca7f67..12d995f 100644
--- a/src/app/transactiontest/main.cc
+++ b/src/app/transactiontest/main.cc
@@ -2,13 +2,9 @@
#include "driver/gpio.h"
#include "driver/stdout.h"
#include "driver/uptime.h"
-#include "driver/spi_b.h"
+#include "driver/spi.h"
#include "driver/sharp96.h"
-#ifndef TIMER_CYCLES
-#error makeflag timer_cycles=1 required
-#endif
-
unsigned char const lynx[12 * 96] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
@@ -117,6 +113,9 @@ extern "C" {
uint16_t i = 0;
class Transaction {
+ /**
+ * Transactions objects must not be nested.
+ */
public:
inline Transaction() { asm_save_all(); }
inline ~Transaction() {}
@@ -126,7 +125,6 @@ class Transaction {
void loop(void)
{
- gpio.led_toggle(1);
{
Transaction tx;
kout << dec << i << endl;
@@ -153,7 +151,6 @@ int main(void)
sharp96.setup();
sharp96.powerOn();
- gpio.led_on(0);
gpio.input(GPIO::p4_5, 1);
asm_load_all();