Repostiory containing DAPLink source code with Reset Pin workaround for HANI_IOT board.
Upstream: https://github.com/ARMmbed/DAPLink
Diff: source/daplink/settings/settings.h
- Revision:
- 0:01f31e923fe2
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/source/daplink/settings/settings.h Tue Apr 07 12:55:42 2020 +0200 @@ -0,0 +1,70 @@ +/** + * @file settings.h + * @brief Access to read user configuration settings + * + * DAPLink Interface Firmware + * Copyright (c) 2009-2016, ARM Limited, All Rights Reserved + * Copyright 2019, Cypress Semiconductor Corporation + * or a subsidiary of Cypress Semiconductor Corporation. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +#ifndef SETTINGS_H +#define SETTINGS_H + +#include <stdint.h> +#include <stdbool.h> + +#ifdef __cplusplus +extern "C" { +#endif + +typedef enum { + ASSERT_SOURCE_NONE = 0, + ASSERT_SOURCE_BL = 1, + ASSERT_SOURCE_APP = 2 +} assert_source_t; + +void config_init(void); + +// Get/set settings residing in flash +void config_set_auto_rst(bool on); +void config_set_automation_allowed(bool on); +void config_set_overflow_detect(bool on); +bool config_get_auto_rst(void); +bool config_get_automation_allowed(void); +bool config_get_overflow_detect(void); + +// Get/set settings residing in shared ram +void config_ram_set_hold_in_bl(bool hold); +void config_ram_set_assert(const char *file, uint16_t line); +void config_ram_clear_assert(void); +bool config_ram_get_hold_in_bl(void); +bool config_ram_get_initial_hold_in_bl(void); +bool config_ram_get_assert(char *buf, uint16_t buf_size, uint16_t *line, assert_source_t *source); +uint8_t config_ram_add_hexdump(uint32_t hexdump); +uint8_t config_ram_get_hexdumps(uint32_t **hexdumps); +void config_ram_set_disable_msd(bool disable_msd); +uint8_t config_ram_get_disable_msd(void); +void config_ram_set_page_erase(bool page_erase_enable); +bool config_ram_get_page_erase(void); + +// Private - should only be called from settings.c +void config_rom_init(void); + +#ifdef __cplusplus +} +#endif + +#endif