Beiträge von marian

    Hi,


    Sorry for noob question, How to compile hyperion so it does look like normal UI, not having menu names like

    main_menu_dashboard_token, conf_general_label_title, main_menu_leds_conf_token etc "_

    P

    @icxruus


    u need to adjust toe compile script, after the step of git clone u need to pause the script:


    what i did is:

    Code
    git clone --recursive --depth 1 -q ${GIT_REPO_URL} ${CODE_PATH} || { echo "---> Failed to download Hyperion source code! Abort"; exit 1; }
    fi
    read -n 1 -r -s -p $'Press enter to continue...\n'   #that line to pause the script
    #Remove previous build area, if no incremental build



    then edit file in separate session

    Code
    hyperion/dependencies/external/rpi_ws281x/rpihw.c


    add

    Code
    {
            .hwver = 0xc03114,
            .type = RPI_HWVER_TYPE_PI4,
            .periph_base = PERIPH_BASE_RPI4,
            .videocore_base = VIDEOCORE_BASE_RPI2,
            .desc = "Pi 4 Model B - 4GB v1.4"
        },


    if that is the RP4 u use. then after editing press any key for the compile script to continue :) and it iwll work :D


    M