From 5ecaf7722b5f1f9d0c41213fc5c129b451302f99 Mon Sep 17 00:00:00 2001 From: Diego Ismirlian Date: Mon, 5 Jun 2017 10:18:45 -0300 Subject: USB Host fixes - Cleaned up alignment macros for GCC & IAR - Corrected EP halt and Clear halt behaviours - Initialization of class drivers by USB Host main driver - Minor cosmetic fixes - Updated USB_HOST testhal app --- testhal/STM32/STM32F4xx/USB_HOST/integer.h | 33 ------------------------------ 1 file changed, 33 deletions(-) delete mode 100644 testhal/STM32/STM32F4xx/USB_HOST/integer.h (limited to 'testhal/STM32/STM32F4xx/USB_HOST/integer.h') diff --git a/testhal/STM32/STM32F4xx/USB_HOST/integer.h b/testhal/STM32/STM32F4xx/USB_HOST/integer.h deleted file mode 100644 index 074a46b..0000000 --- a/testhal/STM32/STM32F4xx/USB_HOST/integer.h +++ /dev/null @@ -1,33 +0,0 @@ -/*-------------------------------------------*/ -/* Integer type definitions for FatFs module */ -/*-------------------------------------------*/ - -#ifndef _FF_INTEGER -#define _FF_INTEGER - -#ifdef _WIN32 /* FatFs development platform */ - -#include -#include - -#else /* Embedded platform */ - -/* This type MUST be 8 bit */ -typedef unsigned char BYTE; - -/* These types MUST be 16 bit */ -typedef short SHORT; -typedef unsigned short WORD; -typedef unsigned short WCHAR; - -/* These types MUST be 16 bit or 32 bit */ -typedef int INT; -typedef unsigned int UINT; - -/* These types MUST be 32 bit */ -typedef long LONG; -typedef unsigned long DWORD; - -#endif - -#endif -- cgit v1.2.3