• Grouping ISRs by priority for overlaying
    Just out of curiosity. Is there a way to tell the linker that ISRs have the same priority and thus cannot interrupt each other and can safely be overlayed? P.S.: And what is the correct passive form...
  • OVERLAY
    I am using the OVERLAY directive as following: OVERLAY(func0 ! *,func1 ! *,func2 ! *,func3 ! *,func4 ! *,func5 ! *) to Excludes the functions from overlay analysis and locates its data and bit segments...
  • overlay
    Hello, we are working on a C51 project using code banking with 2 code banks(105k code) This is the map file generated for my compiled project... TYPE BASE LENGTH RELOCATION SEGMENT NAME...
  • OVERLAY
    Is it possible to do NOOVERLAY for XDATA and do OVERLAY for DATA. Thanks, Goran
  • OVERLAY
    Hi, I have two threads interrupt and main thread. currently, i'm using NOOVERLAY. In order to save space in the RAM, i want to overlay data between functions, BUT I want that the interrupt will...