if hal_present == 1 :
    ucomp = hal.component("axisui.user")
    ucomp.newpin("reload_file",hal.HAL_BIT,hal.HAL_IN)
    ucomp.ready()
    
def user_live_update():
    if ucomp["reload_file"] == 1:
        print "!!axisrc_reload_file!!"
        ucomp["reload_file"] = 0
        commands.reload_file()
