diff options
author | Uladzimir Pylinski <barthess@yandex.ru> | 2016-11-10 20:38:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-10 20:38:24 +0300 |
commit | a9bd529ab54f0e74f73cf08cbb96752274e28d2c (patch) | |
tree | 4059c8d865832e8ce5a10bc391c3a8e1204fae9e /testhal/STM32/STM32F0xx/crc | |
parent | 8f00b3af4d9ce8d711f07551d77d0d923c615b19 (diff) | |
parent | ff515eec71d277d8beac2a0a608990508ce83ff1 (diff) | |
download | ChibiOS-Contrib-a9bd529ab54f0e74f73cf08cbb96752274e28d2c.tar.gz ChibiOS-Contrib-a9bd529ab54f0e74f73cf08cbb96752274e28d2c.tar.bz2 ChibiOS-Contrib-a9bd529ab54f0e74f73cf08cbb96752274e28d2c.zip |
Merge pull request #99 from pl4nkton/stm32_fixes
Stm32 fixes
Diffstat (limited to 'testhal/STM32/STM32F0xx/crc')
-rw-r--r-- | testhal/STM32/STM32F0xx/crc/halconf_community.h | 6 | ||||
-rw-r--r-- | testhal/STM32/STM32F0xx/crc/mcuconf_community.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/testhal/STM32/STM32F0xx/crc/halconf_community.h b/testhal/STM32/STM32F0xx/crc/halconf_community.h index 2bc41bf..31ac01e 100644 --- a/testhal/STM32/STM32F0xx/crc/halconf_community.h +++ b/testhal/STM32/STM32F0xx/crc/halconf_community.h @@ -14,8 +14,8 @@ limitations under the License.
*/
-#ifndef _HALCONF_COMMUNITY_H_
-#define _HALCONF_COMMUNITY_H_
+#ifndef HALCONF_COMMUNITY_H
+#define HALCONF_COMMUNITY_H
/**
* @brief Enables the community overlay.
@@ -113,6 +113,6 @@ #define CRC_USE_MUTUAL_EXCLUSION TRUE
#endif
-#endif /* _HALCONF_COMMUNITY_H_ */
+#endif /* HALCONF_COMMUNITY_H */
/** @} */
diff --git a/testhal/STM32/STM32F0xx/crc/mcuconf_community.h b/testhal/STM32/STM32F0xx/crc/mcuconf_community.h index 8df78ec..bbd2608 100644 --- a/testhal/STM32/STM32F0xx/crc/mcuconf_community.h +++ b/testhal/STM32/STM32F0xx/crc/mcuconf_community.h @@ -14,8 +14,8 @@ limitations under the License. */ -#ifndef _MCUCONF_COMMUNITY_H_ -#define _MCUCONF_COMMUNITY_H_ +#ifndef MCUCONF_COMMUNITY_H +#define MCUCONF_COMMUNITY_H /* * CRC driver system settings. @@ -30,4 +30,4 @@ #define CRCSW_CRC16_TABLE TRUE #define CRCSW_PROGRAMMABLE TRUE -#endif +#endif /* MCUCONF_COMMUNITY_H */ |