Statistiques
| Branche: | Révision:

root / Version 2.3 / Panel_reader_controller.X / factory.h @ fa27b68e

Historique | Voir | Annoter | Télécharger (531 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
  0x01, 0x01, 0x01,
17
  0x03, 0x02, 0x01,
18
  'P', 'R', '_', 'S', 'I', 'C', 'P', 'A', '0', '0', '0', '1', '\r', 0xFF, 0xFF, 0xFF, 0x3D, 0x16,
19
  '1', '2', '3', '4', 0x0D, 0x06,
20
  0x07, 0x03, 0x01
21
};
22

    
23

    
24
#endif        /* FACTORY_SETTINGS_H */
25