aboutsummaryrefslogtreecommitdiff
path: root/test/stubbed/avr/fuse.h
blob: be579d3a2d3e319ffd9438d3310cb3b07c6a1570 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef STUB_AVR_FUSE
#define STUB_AVR_FUSE

struct __fuses_t {
  int high;
  int low;
  int extended;
};

#define FUSES const struct __fuses_t _watch_mcu_fuses_configuration

#endif