Rename cl_utils.* to cli.*, and fix references
File "serial_unix.c" edited but Linux build not done (Windows only dev environment)
This commit is contained in:
parent
0ebcba458d
commit
8a86faf49d
|
@ -72,7 +72,7 @@ ifneq ($(HOSTED_BMP_ONLY), 1)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
SRC += timing.c cl_utils.c utils.c
|
SRC += timing.c cli.c utils.c
|
||||||
SRC += bmp_remote.c remote_swdptap.c remote_jtagtap.c
|
SRC += bmp_remote.c remote_swdptap.c remote_jtagtap.c
|
||||||
ifneq ($(HOSTED_BMP_ONLY), 1)
|
ifneq ($(HOSTED_BMP_ONLY), 1)
|
||||||
SRC += bmp_libusb.c stlinkv2.c
|
SRC += bmp_libusb.c stlinkv2.c
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#if !defined(__BMP_LIBUSB_H)
|
#if !defined(__BMP_LIBUSB_H)
|
||||||
#define __BMP_LIBUSB_H
|
#define __BMP_LIBUSB_H
|
||||||
|
|
||||||
#include "cl_utils.h"
|
#include "cli.h"
|
||||||
|
|
||||||
#if HOSTED_BMP_ONLY != 1
|
#if HOSTED_BMP_ONLY != 1
|
||||||
# include <libusb-1.0/libusb.h>
|
# include <libusb-1.0/libusb.h>
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include "remote.h"
|
#include "remote.h"
|
||||||
#include "target.h"
|
#include "target.h"
|
||||||
#include "bmp_remote.h"
|
#include "bmp_remote.h"
|
||||||
#include "cl_utils.h"
|
#include "cli.h"
|
||||||
#include "hex_utils.h"
|
#include "hex_utils.h"
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
#include "cortexm.h"
|
#include "cortexm.h"
|
||||||
#include "command.h"
|
#include "command.h"
|
||||||
|
|
||||||
#include "cl_utils.h"
|
#include "cli.h"
|
||||||
#include "bmp_hosted.h"
|
#include "bmp_hosted.h"
|
||||||
|
|
||||||
#ifndef O_BINARY
|
#ifndef O_BINARY
|
|
@ -21,8 +21,8 @@
|
||||||
/* This file implements the interface to command line command for PC-Hosted
|
/* This file implements the interface to command line command for PC-Hosted
|
||||||
* platforms.
|
* platforms.
|
||||||
*/
|
*/
|
||||||
#if !defined(__CL_UTILS_H)
|
#if !defined(__CLI_H)
|
||||||
#define __CL_UTILS_H
|
#define __CLI_H
|
||||||
|
|
||||||
#include "cortexm.h"
|
#include "cortexm.h"
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
#define __CMSIS_DAP_H_
|
#define __CMSIS_DAP_H_
|
||||||
|
|
||||||
#include "adiv5.h"
|
#include "adiv5.h"
|
||||||
#include "cl_utils.h"
|
#include "cli.h"
|
||||||
|
|
||||||
#if defined(CMSIS_DAP)
|
#if defined(CMSIS_DAP)
|
||||||
int dap_init(bmp_info_t *info);
|
int dap_init(bmp_info_t *info);
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#ifndef __FTDI_BMP_H
|
#ifndef __FTDI_BMP_H
|
||||||
#define __FTDI_BMP_H
|
#define __FTDI_BMP_H
|
||||||
|
|
||||||
#include "cl_utils.h"
|
#include "cli.h"
|
||||||
#include "jtagtap.h"
|
#include "jtagtap.h"
|
||||||
|
|
||||||
#include "bmp_hosted.h"
|
#include "bmp_hosted.h"
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "target_internal.h"
|
#include "target_internal.h"
|
||||||
#include "adiv5.h"
|
#include "adiv5.h"
|
||||||
#include "timing.h"
|
#include "timing.h"
|
||||||
#include "cl_utils.h"
|
#include "cli.h"
|
||||||
#include "gdb_if.h"
|
#include "gdb_if.h"
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
|
||||||
|
@ -40,7 +40,6 @@
|
||||||
#include "ftdi_bmp.h"
|
#include "ftdi_bmp.h"
|
||||||
#include "jlink.h"
|
#include "jlink.h"
|
||||||
#include "cmsis_dap.h"
|
#include "cmsis_dap.h"
|
||||||
#include "cl_utils.h"
|
|
||||||
|
|
||||||
bmp_info_t info;
|
bmp_info_t info;
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "remote.h"
|
#include "remote.h"
|
||||||
#include "cl_utils.h"
|
#include "cli.h"
|
||||||
#include "cortexm.h"
|
#include "cortexm.h"
|
||||||
|
|
||||||
static int fd; /* File descriptor for connection to GDB remote */
|
static int fd; /* File descriptor for connection to GDB remote */
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
#include "general.h"
|
#include "general.h"
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include "remote.h"
|
#include "remote.h"
|
||||||
#include "cl_utils.h"
|
#include "cli.h"
|
||||||
|
|
||||||
static HANDLE hComm;
|
static HANDLE hComm;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue