forked from auracaster/openocd
This is ANGIE's firmware and bitstream code. The 'Embeded C' code is based on the openULINK project. The hdl bitstream source code is for the spartan-6 FPGA included in ANGIE. Since ANGIE has a different microcontroller (EZ-USB FX2) than openULINK (EZ-USB AN2131), the registers file (reg_ezusb.h) has been changed completely, so are the descriptors, interruptions and the endpoints configuration. Change-Id: I70590c7c58bac6f1939c5ffba57e87d86850664d Signed-off-by: Ahmed BOUDJELIDA <aboudjelida@nanoxplore.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7701 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
50 lines
1011 B
C
50 lines
1011 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/****************************************************************************
|
|
File : delay.c *
|
|
Contents : Delays handling fucntions code 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> *
|
|
*****************************************************************************/
|
|
|
|
#include "delay.h"
|
|
#include <mcs51/compiler.h>
|
|
|
|
void syncdelay(uint8_t count)
|
|
{
|
|
for (uint8_t i = 0; i < count; i++)
|
|
NOP();
|
|
}
|
|
|
|
void delay_5us(void)
|
|
{
|
|
NOP();
|
|
}
|
|
|
|
void delay_1ms(void)
|
|
{
|
|
uint16_t i;
|
|
|
|
for (i = 0; i < 598; i++)
|
|
;
|
|
}
|
|
|
|
void delay_us(uint16_t delay)
|
|
{
|
|
uint16_t i;
|
|
uint16_t maxcount = (delay / 5);
|
|
|
|
for (i = 0; i < maxcount; i++)
|
|
delay_5us();
|
|
}
|
|
|
|
void delay_ms(uint16_t delay)
|
|
{
|
|
uint16_t i;
|
|
|
|
for (i = 0; i < delay; i++)
|
|
delay_1ms();
|
|
}
|