ATY_LIB V2_102_230218
ATY_LIB for general devices or ALGO
 
Loading...
Searching...
No Matches
fw_mem.h
Go to the documentation of this file.
1// Copyright 2021 IOsetting <iosetting(at)outlook.com>
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#ifndef ___FW_MEM_H___
16#define ___FW_MEM_H___
17
18#include "fw_conf.h"
19#include "fw_types.h"
20
21#define MEM_ReadCODE(__ADDR__) (*(unsigned char volatile __CODE *)(__ADDR__))
22// Set SFRX_ON() before using this macro
23#define MEM_ReadXDATA(__ADDR__) (*(unsigned char volatile __XDATA *)(__ADDR__))
24
25typedef enum
26{
32
34void MEM_SetOnchipExtRAM(HAL_State_t HAL_State);
35
36#if (__CONF_MCU_TYPE == 3 )
38#endif
39
40#endif
__XDATA uint8_t buff[7]
Definition: ds3231.c:17
void MEM_SelectWorkRegGroup(MEM_WorkRegGroup_t WorkRegGroup)
Definition: fw_mem.c:17
MEM_WorkRegGroup_t
Definition: fw_mem.h:26
@ MEM_WorkRegGroup_18H_1FH
Definition: fw_mem.h:30
@ MEM_WorkRegGroup_10H_17H
Definition: fw_mem.h:29
@ MEM_WorkRegGroup_00H_07H
Definition: fw_mem.h:27
@ MEM_WorkRegGroup_08H_0FH
Definition: fw_mem.h:28
void MEM_SetOnchipExtRAM(HAL_State_t HAL_State)
Definition: fw_mem.c:23
void MEM_ReadChipID(uint8_t *buff)
HAL_State_t
Definition: fw_types.h:69
unsigned char uint8_t
Definition: fw_types.h:18