133 lines
4.5 KiB
C
133 lines
4.5 KiB
C
/************************************************************************
|
|
*
|
|
* Copyright (C) 2009 Steve Karg <skarg@users.sourceforge.net>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
*************************************************************************/
|
|
#ifndef NVDATA_H
|
|
#define NVDATA_H
|
|
|
|
#include "seeprom.h"
|
|
#include "eeprom.h"
|
|
|
|
/* data version - use to check valid version */
|
|
#define SEEPROM_ID 0xBAC0
|
|
#define SEEPROM_VERSION 0x0001
|
|
|
|
#define SEEPROM_BYTES_MAX (2*1024)
|
|
|
|
/* list of SEEPROM addresses */
|
|
/* note to developers: define each byte,
|
|
even if they are not used explicitly */
|
|
#define NV_SEEPROM_TYPE_0 0
|
|
#define NV_SEEPROM_TYPE_1 1
|
|
#define NV_SEEPROM_VERSION_0 2
|
|
#define NV_SEEPROM_VERSION_1 3
|
|
/* --- */
|
|
/* define the MAC, BAUD, MAX Master, Device Instance internal
|
|
so that bootloader *could* use them. */
|
|
/* note: MAC could come from DIP switch, or be in non-volatile memory */
|
|
#define NV_EEPROM_MAC 0
|
|
/* 9=9.6k, 19=19.2k, 38=38.4k, 57=57.6k, 76=76.8k, 115=115.2k */
|
|
#define NV_EEPROM_BAUD_K 1
|
|
#define NV_EEPROM_MAX_MASTER 2
|
|
/* device instance is only 22 bits - easier if we use 32 bits */
|
|
#define NV_EEPROM_DEVICE_0 3
|
|
#define NV_EEPROM_DEVICE_1 4
|
|
#define NV_EEPROM_DEVICE_2 5
|
|
#define NV_EEPROM_DEVICE_3 6
|
|
/* Device Name */
|
|
#define NV_EEPROM_DEVICE_NAME_LENGTH 8
|
|
#define NV_EEPROM_DEVICE_NAME_ENCODING 9
|
|
#define NV_EEPROM_DEVICE_NAME_0 10
|
|
#define NV_EEPROM_DEVICE_NAME_1 11
|
|
#define NV_EEPROM_DEVICE_NAME_2 12
|
|
#define NV_EEPROM_DEVICE_NAME_3 13
|
|
#define NV_EEPROM_DEVICE_NAME_4 14
|
|
#define NV_EEPROM_DEVICE_NAME_5 15
|
|
#define NV_EEPROM_DEVICE_NAME_6 16
|
|
#define NV_EEPROM_DEVICE_NAME_7 17
|
|
#define NV_EEPROM_DEVICE_NAME_8 18
|
|
#define NV_EEPROM_DEVICE_NAME_9 19
|
|
#define NV_EEPROM_DEVICE_NAME_10 20
|
|
#define NV_EEPROM_DEVICE_NAME_11 21
|
|
#define NV_EEPROM_DEVICE_NAME_12 22
|
|
#define NV_EEPROM_DEVICE_NAME_13 23
|
|
#define NV_EEPROM_DEVICE_NAME_14 24
|
|
#define NV_EEPROM_DEVICE_NAME_15 25
|
|
#define NV_EEPROM_DEVICE_NAME_16 26
|
|
#define NV_EEPROM_DEVICE_NAME_17 27
|
|
#define NV_EEPROM_DEVICE_NAME_18 28
|
|
#define NV_EEPROM_DEVICE_NAME_19 29
|
|
#define NV_EEPROM_DEVICE_NAME_20 30
|
|
#define NV_EEPROM_DEVICE_NAME_21 31
|
|
#define NV_EEPROM_DEVICE_NAME_22 32
|
|
#define NV_EEPROM_DEVICE_NAME_23 33
|
|
#define NV_EEPROM_DEVICE_NAME_24 34
|
|
#define NV_EEPROM_DEVICE_NAME_25 35
|
|
#define NV_EEPROM_DEVICE_NAME_26 36
|
|
#define NV_EEPROM_DEVICE_NAME_27 37
|
|
#define NV_EEPROM_DEVICE_NAME_28 38
|
|
#define NV_EEPROM_DEVICE_NAME_29 39
|
|
#define NV_EEPROM_DEVICE_NAME_30 40
|
|
#define NV_EEPROM_DEVICE_NAME_31 41
|
|
#define NV_EEPROM_DEVICE_NAME_SIZE 32
|
|
|
|
/*=============== SEEPROM ================*/
|
|
#define NV_SEEPROM_BINARY_OUTPUT_OFFSET 32
|
|
#define NV_SEEPROM_BINARY_OUTPUT_0 10
|
|
#define NV_SEEPROM_BINARY_OUTPUT(n,p) \
|
|
(NV_SEEPROM_BINARY_OUTPUT_0 + \
|
|
(NV_SEEPROM_BINARY_OUTPUT_OFFSET * (n)) + (p))
|
|
/* BO properties */
|
|
#define NV_SEEPROM_BO_POLARITY 0
|
|
#define NV_SEEPROM_BO_OUT_OF_SERVICE 1
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_1 2
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_2 3
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_3 4
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_4 5
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_5 6
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_6 7
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_7 8
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_8 9
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_9 10
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_10 11
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_11 12
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_12 13
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_13 14
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_14 15
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_15 16
|
|
#define NV_SEEPROM_BO_PRIORITY_ARRAY_16 17
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif
|