Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2 | Rev 5 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | /** |
1 | /** |
2 | ****************************************************************************** |
2 | ****************************************************************************** |
3 | * @file stm32f1xx_hal_pccard.c |
3 | * @file stm32f1xx_hal_pccard.c |
4 | * @author MCD Application Team |
4 | * @author MCD Application Team |
5 | * @version V1.0.1 |
5 | * @version V1.0.4 |
6 | * @date 31-July-2015 |
6 | * @date 29-April-2016 |
7 | * @brief PCCARD HAL module driver. |
7 | * @brief PCCARD HAL module driver. |
8 | * This file provides a generic firmware to drive PCCARD memories mounted |
8 | * This file provides a generic firmware to drive PCCARD memories mounted |
9 | * as external device. |
9 | * as external device. |
10 | * |
10 | * |
11 | @verbatim |
11 | @verbatim |
Line 45... | Line 45... | ||
45 | |
45 | |
46 | @endverbatim |
46 | @endverbatim |
47 | ****************************************************************************** |
47 | ****************************************************************************** |
48 | * @attention |
48 | * @attention |
49 | * |
49 | * |
50 | * <h2><center>© COPYRIGHT(c) 2015 STMicroelectronics</center></h2> |
50 | * <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2> |
51 | * |
51 | * |
52 | * Redistribution and use in source and binary forms, with or without modification, |
52 | * Redistribution and use in source and binary forms, with or without modification, |
53 | * are permitted provided that the following conditions are met: |
53 | * are permitted provided that the following conditions are met: |
54 | * 1. Redistributions of source code must retain the above copyright notice, |
54 | * 1. Redistributions of source code must retain the above copyright notice, |
55 | * this list of conditions and the following disclaimer. |
55 | * this list of conditions and the following disclaimer. |
Line 209... | Line 209... | ||
209 | * the configuration information for PCCARD module. |
209 | * the configuration information for PCCARD module. |
210 | * @retval None |
210 | * @retval None |
211 | */ |
211 | */ |
212 | __weak void HAL_PCCARD_MspInit(PCCARD_HandleTypeDef *hpccard) |
212 | __weak void HAL_PCCARD_MspInit(PCCARD_HandleTypeDef *hpccard) |
213 | { |
213 | { |
- | 214 | /* Prevent unused argument(s) compilation warning */ |
|
- | 215 | UNUSED(hpccard); |
|
214 | /* NOTE : This function Should not be modified, when the callback is needed, |
216 | /* NOTE : This function Should not be modified, when the callback is needed, |
215 | the HAL_PCCARD_MspInit could be implemented in the user file |
217 | the HAL_PCCARD_MspInit could be implemented in the user file |
216 | */ |
218 | */ |
217 | } |
219 | } |
218 | 220 | ||
Line 222... | Line 224... | ||
222 | * the configuration information for PCCARD module. |
224 | * the configuration information for PCCARD module. |
223 | * @retval None |
225 | * @retval None |
224 | */ |
226 | */ |
225 | __weak void HAL_PCCARD_MspDeInit(PCCARD_HandleTypeDef *hpccard) |
227 | __weak void HAL_PCCARD_MspDeInit(PCCARD_HandleTypeDef *hpccard) |
226 | { |
228 | { |
- | 229 | /* Prevent unused argument(s) compilation warning */ |
|
- | 230 | UNUSED(hpccard); |
|
227 | /* NOTE : This function Should not be modified, when the callback is needed, |
231 | /* NOTE : This function Should not be modified, when the callback is needed, |
228 | the HAL_PCCARD_MspDeInit could be implemented in the user file |
232 | the HAL_PCCARD_MspDeInit could be implemented in the user file |
229 | */ |
233 | */ |
230 | } |
234 | } |
231 | 235 | ||
Line 613... | Line 617... | ||
613 | * the configuration information for PCCARD module. |
617 | * the configuration information for PCCARD module. |
614 | * @retval None |
618 | * @retval None |
615 | */ |
619 | */ |
616 | __weak void HAL_PCCARD_ITCallback(PCCARD_HandleTypeDef *hpccard) |
620 | __weak void HAL_PCCARD_ITCallback(PCCARD_HandleTypeDef *hpccard) |
617 | { |
621 | { |
- | 622 | /* Prevent unused argument(s) compilation warning */ |
|
- | 623 | UNUSED(hpccard); |
|
618 | /* NOTE : This function Should not be modified, when the callback is needed, |
624 | /* NOTE : This function Should not be modified, when the callback is needed, |
619 | the HAL_PCCARD_ITCallback could be implemented in the user file |
625 | the HAL_PCCARD_ITCallback could be implemented in the user file |
620 | */ |
626 | */ |
621 | } |
627 | } |
622 | 628 |