Added TARGET_DISCO_F469NI in USBHOST\USBHost\TARGET_STM\USBHALHost_STM_TARGET.h
Dependents: DISCO-F469NI_USB_Disk STM32F4xx_USB_Memory
Fork of USBHOST by
USBHost/TARGET_STM/USBHALHost_STM_TARGET.h@7:7ebd364a6be5, 2018-04-30 (annotated)
- Committer:
- kenjiArai
- Date:
- Mon Apr 30 05:37:24 2018 +0000
- Revision:
- 7:7ebd364a6be5
- Parent:
- 1:ab240722d7ef
Added TARGET_DISCO_F469NI in USBHOST\USBHost\TARGET_STM\USBHALHost_STM_TARGET.h
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 1 | /* Copyright (c) 2016 mbed.org, MIT License |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 2 | * |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 3 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 4 | * and associated documentation files (the "Software"), to deal in the Software without |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 5 | * restriction, including without limitation the rights to use, copy, modify, merge, publish, |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 6 | * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 7 | * Software is furnished to do so, subject to the following conditions: |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 8 | * |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 9 | * The above copyright notice and this permission notice shall be included in all copies or |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 10 | * substantial portions of the Software. |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 11 | * |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 12 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 13 | * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 14 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 15 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 16 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 17 | */ |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 18 | |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 19 | /* 144 pins boards */ |
kenjiArai | 7:7ebd364a6be5 | 20 | // April 29th, 2018 by JH1PJL -------------------------------------------------- |
kenjiArai | 7:7ebd364a6be5 | 21 | #if defined(TARGET_NUCLEO_F429ZI) || defined(TARGET_NUCLEO_F446ZE) \ |
kenjiArai | 7:7ebd364a6be5 | 22 | || defined(TARGET_NUCLEO_F207ZG) || defined(TARGET_NUCLEO_F767ZI) \ |
kenjiArai | 7:7ebd364a6be5 | 23 | || defined(TARGET_NUCLEO_F746ZG) || defined(TARGET_NUCLEO_F412ZG) |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 24 | #include "USBHALHost_STM_144_64pins.h" |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 25 | #endif |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 26 | |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 27 | /* 64 pins boards */ |
kenjiArai | 7:7ebd364a6be5 | 28 | // April 29th, 2018 by JH1PJL -------------------------------------------------- |
kenjiArai | 7:7ebd364a6be5 | 29 | #if defined(TARGET_NUCLEO_F401RE) || defined(TARGET_NUCLEO_L476RG) \ |
kenjiArai | 7:7ebd364a6be5 | 30 | || defined(TARGET_NUCLEO_F411RE) || defined(TARGET_NUCLEO_F446RE) \ |
kenjiArai | 7:7ebd364a6be5 | 31 | || defined(TARGET_DISCO_F469NI) |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 32 | #define USBHALHOST_64pins |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 33 | #include "USBHALHost_STM_144_64pins.h" |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 34 | #endif |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 35 | |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 36 | /* DISCO board */ |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 37 | |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 38 | #ifdef TARGET_DISCO_F429ZI |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 39 | #include "USBHALHost_DISCOF429ZI.h" |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 40 | #endif |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 41 | |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 42 | #ifdef TARGET_DISCO_L476VG |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 43 | #include "USBHALHost_DISCOL476VG.h" |
frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 44 | #endif |