Skip to content
Snippets Groups Projects
Select Git revision
  • fd96a857577d504ae363b5daa88fbd7cf081b8d0
  • master default protected
  • font-fix
  • schneider/ble-stability-new-phy-adv
  • schneider/ble-stability
  • genofire/ble-follow-py
  • msgctl/gfx_rle
  • schneider/ble-stability-new-phy
  • add_menu_vibration
  • plaetzchen/ios-workaround
  • blinkisync-as-preload
  • schneider/max30001-pycardium
  • schneider/max30001-epicaridum
  • schneider/max30001
  • schneider/stream-locks
  • schneider/fundamental-test
  • schneider/ble-buffers
  • schneider/maxim-sdk-update
  • ch3/splashscreen
  • koalo/bhi160-works-but-dirty
  • koalo/wip/i2c-for-python
  • v1.11
  • v1.10
  • v1.9
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
36 results

personal_state.c

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    ldscript 407 B
    SECTIONS
    {
        . = 0xA0000000;
    	.text : { *(.text) }
    	.data ALIGN(0x10): { *(.data) }
    	.bss ALIGN(0x10): {
    	    __bss_start__ = ABSOLUTE(.);
    	    *(.bss)
    	    . += 0x100;
            }
    	__bss_end__ = .;
    PROVIDE (__stack = .);
    	_end = .;
    	.debug_info     0 : { *(.debug_info) }
       	.debug_abbrev   0 : { *(.debug_abbrev) }
       	.debug_line     0 : { *(.debug_line) }
       	.debug_frame    0 : { *(.debug_frame) }
    }