Hi Bernd,
thank you to let us know. I can confirm that your workaround also works for me.
I simply changed a line in my Makefile:
from:
$(NAME)-$(CORE).axf: $(STARTUP) $(OBJS)
to:
all: $(NAME)-$(CORE).axf lst text
$(NAME)-$(CORE).axf: $(STARTUP) $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
$(SIZE) $(NAME)-$(CORE).axf
and the binary now includes code of ISR. I don't need to mark ISR code with any extra attributes. S I would wait for some future build when it will be fixed.
Hi Bernd,
thank you to let us know. I can confirm that your workaround also works for me.
I simply changed a line in my Makefile:
from: -$(CORE) .axf: $(STARTUP) $(OBJS)
$(NAME)
to: -$(CORE) .axf: $(STARTUP) $(OBJS)
all: $(NAME)-$(CORE).axf lst text
$(NAME)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
$(SIZE) $(NAME)-$(CORE).axf
and the binary now includes code of ISR. I don't need to mark ISR code with any extra attributes. S I would wait for some future build when it will be fixed.