#SRCS = common.c test.c # For debugging issue on ATmega168. Check on ATmega32 also. Possibly might be fixed now by the linking issue fix
SRCS = example.c
#SRCS = switch_n_led.c
#SRCS = common.c ssd.c # Some issues with TODO stuff. Is it only with ATmega168?. Check on ATmega32 also. Possibly might be fixed now by the linking issue fix
#SRCS = common.c rgb_pwm.c # Dependent on ATmega168. Shall it be changed based on ATmega32, as well?
#SRCS = pgm_space_storage.c
#SRCS = stepper_motor.c
#SRCS = serial.c serial_demo.c
#SRCS = clcd.c lcd_demo.c
#SRCS = clcd.c ldr_adc.c
#SRCS = serial.c serial_int.c
#SRCS = clcd.c serial.c clcd_serial.c
#SRCS = fan.c
#SRCS = buzzer.c # Not yet working - Need to be tried after the linking issue fix
#SRCS = dac.c serial.c # Not yet working - Need to be tried after the linking issue fix
#SRCS = clcd.c temp_adc.c
#SRCS = led_cube.c # Yet to be tried
#SRCS = flash.c serial.c flash_demo.c # Need to try by putting into boot loader &/or NRWW section
#SRCS = programmer.c # Yet to be coded
OBJS := $(SRCS:.c=.o)
TARGET := download

#CHIP_NO := 168
#CHIP_NO := 32
CHIP_NO := 16
#CHIP_NO := 128rfa1
#F_CPU := 1000000
#F_CPU := 3686400
#F_CPU := 7372800
#F_CPU := 8000000
F_CPU := 16000000
#F_CPU := 20000000
include rules.mk
