File: left-unit.c

package info (click to toggle)
simulavr 1.0.0%2Bgit20160221.e53413b-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 5,748 kB
  • sloc: cpp: 35,491; python: 6,991; ansic: 3,567; makefile: 1,072; sh: 653; asm: 414; tcl: 320
file content (39 lines) | stat: -rw-r--r-- 1,355 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * Copyright (C) 2007 Onno Kortmann <onno@gmx.net>
 *  
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *  
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *  
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA..
 *  
 */
#include <avr/io.h>
#define F_CPU	12000000
#include <util/delay.h>
#include "csinglepincomm.h"

int main() {
    // wait until other side is ready
    _delay_us(200);
    spc_init();
    spc_trx(0x03); // flash read
    spc_trx(0x01); // adr L
    spc_trx(0x00); // adr H

    /* Flash @ word 0x0001: 0xc0. This should appear in simsend in the gtkwave
       window! */
    
    /* read byte and place into memory location where it
       can be read by by the verilog code... yes, this is very crude! */
    *(unsigned char*)(0x70)=spc_trx(0x00); 
    return 0;
}