Skip to content
Snippets Groups Projects
  1. Sep 17, 2024
  2. Aug 15, 2024
  3. Aug 14, 2024
    • Simon Rose's avatar
      Remove AUTOSRCS entirely · 4e2eb406
      Simon Rose authored
      4e2eb406
    • Simon Rose's avatar
      Remove last references to sequencer · b66b9330
      Simon Rose authored
      This needs a corresponding change to sequencer, namely adding the following
      as a CONFIG_SNCSEQ file:
      ```make
      ifdef T_A
      
      DBDFILES += $(patsubst %.st,%_snl.dbd,$(notdir $(filter %.st,${SRCS})))
      DBDFILES += $(patsubst %.stt,%_snl.dbd,$(notdir $(filter %.stt,${SRCS})))
      
      endif
      ```
      
      Note that we modify `DBDFILES` which is a bit of a "private variable" instead
      of the more ideal `DBDS`; however, I really don't see a way to get around that
      given that we only read the dependency information on pass three of this cursed
      file, long after `DBDS` has been forgotten.
      b66b9330
  4. Aug 13, 2024
  5. Jul 25, 2024
  6. Jul 24, 2024
  7. Jul 18, 2024
  8. Jul 17, 2024
  9. Jul 15, 2024
    • Simon Rose's avatar
      Merge branch 'fix_truncated_errlogs' into 'master' · 08b134b1
      Simon Rose authored
      E3-1589: Fix truncated error logs
      
      See merge request !178
      08b134b1
    • Simon Rose's avatar
      Update changelog · e37cab3c
      Simon Rose authored
      e37cab3c
    • Simon Rose's avatar
      E3-1589: Fix truncated error logs · 66003fc0
      Simon Rose authored
      In EPICS base, the errorlog functionality is initialised with a default
      maximum error log size of 256. This means that error messages longer than
      that size show as `<<TRUNCATED>>´, which means that we miss a number of
      important messages, in particular error messages due to missing symbols
      from shared libraries when they are loaded.
      
      `errlogInit` unfortunately is a bit of a singleton; it can only be called
      a single time, and it is called when we load require the very first time.
      This fix allows us to configure error log buffer sizes at IOC startup time.
      66003fc0
  10. Jul 12, 2024
  11. Jul 10, 2024
  12. Jun 14, 2024
  13. Apr 29, 2024
  14. Apr 25, 2024
  15. Apr 24, 2024
  16. Apr 17, 2024
  17. Apr 15, 2024
  18. Apr 10, 2024
  19. Mar 25, 2024
  20. Mar 22, 2024
  21. Mar 20, 2024
Loading