fw_mem.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. #ifndef ___FW_MEM_H___
  15. #define ___FW_MEM_H___
  16. #include "fw_conf.h"
  17. #include "fw_types.h"
  18. #define MEM_ReadCODE(__ADDR__) (*(unsigned char volatile __CODE *)(__ADDR__))
  19. // Set SFRX_ON() before using this macro
  20. #define MEM_ReadXDATA(__ADDR__) (*(unsigned char volatile __XDATA *)(__ADDR__))
  21. typedef enum
  22. {
  23. MEM_WorkRegGroup_00H_07H = 0x00,
  24. MEM_WorkRegGroup_08H_0FH = 0x01,
  25. MEM_WorkRegGroup_10H_17H = 0x02,
  26. MEM_WorkRegGroup_18H_1FH = 0x03,
  27. } MEM_WorkRegGroup_t;
  28. void MEM_SelectWorkRegGroup(MEM_WorkRegGroup_t WorkRegGroup);
  29. void MEM_SetOnchipExtRAM(HAL_State_t HAL_State);
  30. #if (__CONF_MCU_TYPE == 3 )
  31. void MEM_ReadChipID(uint8_t *buff);
  32. #endif
  33. #endif