Statistiques
| Branche: | Révision:

root / Version 2.8 / Panel_reader_controller.X / factory.h @ 367905ec

Historique | Voir | Annoter | Télécharger (492 octets)

1
/* 
2
 * File: factory.h
3
 * Author: Enzo Niro
4
 * Comments: Set default factory settings here
5
 * Revision history: 1.0
6
 */
7

    
8

    
9
#ifndef FACTORY_SETTINGS_H
10
#define        FACTORY_SETTINGS_H
11

    
12
#include <xc.h> // include processor files - each processor file is guarded.  
13

    
14
const uint8_t ATtiny826_factory_buffer[] =
15
{
16
  0x03, 0x02, 0x01,
17
  0x02, 0x01, 0x02,
18
  'S', 'I', 'C', 'P', 'A', '_', 'A', 'S', 'B', 0x1C, 0x0B,
19
  '1', '2', '3', '4', 0x0D, 0x06,
20
  0x06, 0x02, 0x02
21
};
22

    
23

    
24
#endif        /* FACTORY_SETTINGS_H */
25