aboutsummaryrefslogtreecommitdiff
path: root/contrib/firmware/angie/c/include/protocol.h
blob: a12644b27df7778543fe6726a8b230c611ba5e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-or-later */
/****************************************************************************
    File : protocol.h                                                       *
    Contents : Jtag commands handling protocol header file for NanoXplore   *
    USB-JTAG ANGIE adapter hardware.                                        *
    Based on openULINK project code by: Martin Schmoelzer.                  *
    Copyright 2023, Ahmed Errached BOUDJELIDA, NanoXplore SAS.              *
    <aboudjelida@nanoxplore.com>                                            *
	<ahmederrachedbjld@gmail.com>											*
*****************************************************************************/

#ifndef __PROTOCOL_H
#define __PROTOCOL_H

#include <stdbool.h>

bool execute_command(void);
void command_loop(void);

#endif