File: progalgavr.h

package info (click to toggle)
xc3sprog 0%2Bsvn795%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 8,800 kB
  • sloc: cpp: 15,983; ansic: 849; vhdl: 410; makefile: 3
file content (65 lines) | stat: -rw-r--r-- 1,881 bytes parent folder | download | duplicates (3)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* AVR programming algorithms

Copyright (C) 2009 Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de
Copyright (C) <2001>  <AJ Erasmus> antone@sentechsa.com

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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

*/
#ifndef PROGALGAVR_H
#define PROGALGAVR_H

#include <stdio.h>

#include "jtag.h"
#include "iobase.h"
#include "srecfile.h"

typedef unsigned char byte;
#define FUSE_EXT  3
#define FUSE_HIGH 2
#define FUSE_LOW  1
#define FUSE_LOCK 0

class ProgAlgAVR
{
 private:
  static const byte EXTEST;
  static const byte IDCODE;
  static const byte SAMPLE_PRELOAD;
  static const byte PROG_ENABLE;
  static const byte PROG_COMMANDS;
  static const byte PROG_PAGELOAD;
  static const byte PROG_PAGEREAD;
  static const byte AVR_RESET;
  static const byte BYPASS;

  Jtag *jtag;
  unsigned int fp_size;

  void progmode(bool enter);

 public:
  ProgAlgAVR(Jtag &j, unsigned int FlashpageSize);
  ~ProgAlgAVR();
  void read_fuses(byte * fuses);
  int write_fuses(byte * fuses);
  int erase(void);
  int pagewrite_flash(unsigned int address, byte * buffer, unsigned int size);
  void pageread_flash(unsigned int address, byte * buffer, unsigned int size);
  void read_eeprom(unsigned int address, byte * buffer, unsigned int size);
};

#endif //PROGALGAVR_H