12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* Copyright Statement:
- *
- * This software/firmware and related documentation ("AutoChips Software") are
- * protected under relevant copyright laws. The information contained herein is
- * confidential and proprietary to AutoChips Inc. and/or its licensors. Without
- * the prior written permission of AutoChips inc. and/or its licensors, any
- * reproduction, modification, use or disclosure of AutoChips Software, and
- * information contained herein, in whole or in part, shall be strictly
- * prohibited.
- *
- * AutoChips Inc. (C) 2016. All rights reserved.
- *
- * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
- * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("AUTOCHIPS SOFTWARE")
- * RECEIVED FROM AUTOCHIPS AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER
- * ON AN "AS-IS" BASIS ONLY. AUTOCHIPS EXPRESSLY DISCLAIMS ANY AND ALL
- * WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
- * NONINFRINGEMENT. NEITHER DOES AUTOCHIPS PROVIDE ANY WARRANTY WHATSOEVER WITH
- * RESPECT TO THE SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY,
- * INCORPORATED IN, OR SUPPLIED WITH THE AUTOCHIPS SOFTWARE, AND RECEIVER AGREES
- * TO LOOK ONLY TO SUCH THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO.
- * RECEIVER EXPRESSLY ACKNOWLEDGES THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO
- * OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES CONTAINED IN AUTOCHIPS
- * SOFTWARE. AUTOCHIPS SHALL ALSO NOT BE RESPONSIBLE FOR ANY AUTOCHIPS SOFTWARE
- * RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR
- * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND AUTOCHIPS'S
- * ENTIRE AND CUMULATIVE LIABILITY WITH RESPECT TO THE AUTOCHIPS SOFTWARE
- * RELEASED HEREUNDER WILL BE, AT AUTOCHIPS'S OPTION, TO REVISE OR REPLACE THE
- * AUTOCHIPS SOFTWARE AT ISSUE, OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE
- * CHARGE PAID BY RECEIVER TO AUTOCHIPS FOR SUCH AUTOCHIPS SOFTWARE AT ISSUE.
- */
-
- #ifndef CFG_H
- #define CFG_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "ac780x.h"
- #define IAP_BOOTLOAD_ADDRESS 0x8000000 /* define bootload start address */
- #define CONFIG_ADDRESS 0x08007800 /* 预留一个页用于存放配置信息 */
- #define APP_ADDRESS 0x8008000 /* define app start address */
- #define APP_ADDRESS_TEMP 0x8014000 /* start address for ota package */
-
- #define EFLASH_PAGE_SIZE_INIT 2048 /* define one-page size */
- #define EFLASH_PAGE_NUM_INIT 54 /* define APP page num, size=2048*54=108K */
-
- #define APP_SIZE (EFLASH_PAGE_SIZE_INIT * EFLASH_PAGE_NUM_INIT)
- #define APP_ADDRESS_END ((uint32_t)(APP_ADDRESS + APP_SIZE))
-
- #define CONFIG_MAGIC 0xaa55
- #define DEFAULT_ADDR 0x20
- #define BROADCAST_ADDR 0xFF
- /*
- * sizeof(Config_type) 不能超出2KB
- */
- typedef struct
- {
- uint16_t magic;
- uint8_t addr;
- uint8_t br_index;
- uint16_t hw_version;
- uint16_t devicetype;
- uint32_t deviceid;
-
- uint32_t AppSize;
- uint32_t AppCrc;
- }Config_type;
- extern Config_type *config;
- extern int Config_Init(void);
- extern int SaveConfig(void);
- extern int ResetConfig(void);
-
- #ifdef __cplusplus
- }
- #endif
- #endif /* CFG_H */
|