Commit 28fe073e48558af93ae41ea4ae84b66e6c2ad71f
authorJakob Gruber <jakob.gruber@gmail.com>
Fri, 27 Jul 2012 11:58:13 +0000 (13:58 +0200)
committerJakob Gruber <jakob.gruber@gmail.com>
Tue, 31 Jul 2012 11:06:00 +0000 (13:06 +0200)
Changed all include guard defines to a consistent form and added them if
missing.

9 files changed:
simavr/sim/avr_bitbang.c
simavr/sim/avr_extint.h
simavr/sim/avr_spi.h
simavr/sim/avr_timer.h
simavr/sim/avr_twi.h
simavr/sim/avr_uart.h
simavr/sim/avr_usb.h
simavr/sim/sim_core.h
simavr/sim/sim_elf.h

index 254c95a7e233719f49dc8e82c8d7e76e5635aa7c..040273c5bb5c52f2c84842caf90bd6468db93409 100644 (file)
@@ -20,6 +20,9 @@
        along with simavr.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#ifndef __AVR_BITBANG_H__
+#define __AVR_BITBANG_H__
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -241,3 +244,5 @@ void avr_bitbang_stop(avr_bitbang_t * p)
 #ifdef __cplusplus
 };
 #endif
+
+#endif /*__AVR_BITBANG_H__*/
index 57519d06c39e65ab3ae6e6bb5042a4ddccf6206c..be54c307d9c558b8f54f773003b678eba9bcfbb4 100644 (file)
@@ -21,8 +21,8 @@
        along with simavr.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef AVR_EXTINT_H_
-#define AVR_EXTINT_H_
+#ifndef __AVR_EXTINT_H__
+#define __AVR_EXTINT_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -94,4 +94,4 @@ void avr_extint_init(avr_t * avr, avr_extint_t * p);
 };
 #endif
 
-#endif /* AVR_EXTINT_H_ */
+#endif /*__AVR_EXTINT_H__*/
index 4a8eaf0396d1f3ad9f9812a35c52605bb4075320..0f102521bd1fea8639747b6f85eab6ef8938bb2c 100644 (file)
@@ -19,8 +19,8 @@
        along with simavr.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef AVR_SPI_H_
-#define AVR_SPI_H_
+#ifndef __AVR_SPI_H__
+#define __AVR_SPI_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -61,4 +61,4 @@ void avr_spi_init(avr_t * avr, avr_spi_t * port);
 };
 #endif
 
-#endif /* AVR_SPI_H_ */
+#endif /*__AVR_SPI_H__*/
index 4e92318998cca9653f61c07a7dec83175993c372..22244e03f0dab4210aed94105397949f018707ef 100644 (file)
@@ -19,8 +19,8 @@
        along with simavr.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef AVR_TIMER_H_
-#define AVR_TIMER_H_
+#ifndef __AVR_TIMER_H__
+#define __AVR_TIMER_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -132,4 +132,4 @@ void avr_timer_init(avr_t * avr, avr_timer_t * port);
 };
 #endif
 
-#endif /* AVR_TIMER_H_ */
+#endif /*__AVR_TIMER_H__*/
index e21e3b6bd7b47addaa556f3a16927b7b372b1974..70911a28b65f729edd014d9dafc0f5f46fae1767 100644 (file)
@@ -19,8 +19,8 @@
        along with simavr.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef AVR_TWI_H_
-#define AVR_TWI_H_
+#ifndef __AVR_TWI_H__
+#define __AVR_TWI_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -111,4 +111,4 @@ avr_twi_irq_msg(
 };
 #endif
 
-#endif /* AVR_TWI_H_ */
+#endif /*__AVR_TWI_H__*/
index d21c36f70845077e40955168119780aca87c48c2..8db33a074c48a4a1b1d1fdbc83696013849b97b7 100644 (file)
@@ -19,8 +19,8 @@
        along with simavr.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef AVR_UART_H_
-#define AVR_UART_H_
+#ifndef __AVR_UART_H__
+#define __AVR_UART_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -125,4 +125,4 @@ void avr_uart_init(avr_t * avr, avr_uart_t * port);
 };
 #endif
 
-#endif /* AVR_UART_H_ */
+#endif /*__AVR_UART_H__*/
index 842e423a86c98c50d5991a18a79f01ddb3f3b014..fe9337bdeaea1fb00b4ad5794162e1755d66c438 100644 (file)
@@ -19,8 +19,8 @@
        along with simavr.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef AVR_USB_H_
-#define AVR_USB_H_
+#ifndef __AVR_USB_H__
+#define __AVR_USB_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -71,4 +71,4 @@ void avr_usb_init(avr_t * avr, avr_usb_t * port);
 };
 #endif
 
-#endif /* AVR_USB_H_ */
+#endif /*__AVR_USB_H__*/
index a3a4c28251ce57e1fb19237d145f91c27124fa7f..6466b8035b6e774984f3b37c43a811b2ddf3455a 100644 (file)
@@ -19,8 +19,8 @@
        along with simavr.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef SIM_CORE_H_
-#define SIM_CORE_H_
+#ifndef __SIM_CORE_H__
+#define __SIM_CORE_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -119,4 +119,4 @@ void avr_dump_state(avr_t * avr);
 };
 #endif
 
-#endif /* SIM_CORE_H_ */
+#endif /*__SIM_CORE_H__*/
index 2c10babcefe26e3d9a13f41bd8fd325e5828fcc3..808487364a32656dd4e0e5aef48273a7107d4b41 100644 (file)
@@ -19,8 +19,8 @@
        along with simavr.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef ELF_H_
-#define ELF_H_
+#ifndef __SIM_ELF_H__
+#define __SIM_ELF_H__
 
 #include "avr_mcu_section.h"
 
@@ -81,4 +81,4 @@ void avr_load_firmware(avr_t * avr, elf_firmware_t * firmware);
 };
 #endif
 
-#endif /* ELF_H_ */
+#endif /*__SIM_ELF_H__*/