/
aristotel
/
openocd
Обзор
Документация
Войти
/
aristotel
/
openocd
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/target/algorithm.h
42 строки
1 KB
Antonio Borneo
target: algorithm: change reg_name to const in init_reg_param()
01 мар 2025, 18:11
01 мар 2025, 18:11
e142584
Код
Авторство
О чём код?
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2005 by Dominic Rath * * Dominic.Rath@gmx.de * ***************************************************************************/ #ifndef OPENOCD_TARGET_ALGORITHM_H #define OPENOCD_TARGET_ALGORITHM_H #include "helper/types.h" #include "helper/replacements.h" enum param_direction { PARAM_IN, PARAM_OUT, PARAM_IN_OUT }; struct mem_param { target_addr_t address; uint32_t size; uint8_t *value; enum param_direction direction; }; struct reg_param { const char *reg_name; uint32_t size; uint8_t *value; enum param_direction direction; }; void init_mem_param(struct mem_param *param, uint32_t address, uint32_t size, enum param_direction dir); void destroy_mem_param(struct mem_param *param); void init_reg_param(struct reg_param *param, const char *reg_name, uint32_t size, enum param_direction dir); void destroy_reg_param(struct reg_param *param); #endif /* OPENOCD_TARGET_ALGORITHM_H */