예제 #1
0
void mt65xx_disp_show_battery_capacity(UINT32 capacity)
{
    mt65xx_logo_get_custom_if();

    if(logo_cust_if->show_battery_capacity)
    {
    	logo_cust_if->show_battery_capacity(capacity);
    }
    else
    {
        cust_show_battery_capacity(capacity);
    }

    return;
}
예제 #2
0
void mt65xx_disp_show_battery_full(void)
{
    mt65xx_logo_get_custom_if();

    if(logo_cust_if->show_battery_full)
    {
    	logo_cust_if->show_battery_full();
    }
    else
    {
        cust_show_battery_capacity(100);
    }

    return;
}
void mt65xx_disp_show_battery_capacity(UINT32 capacity)
{
    mt65xx_logo_get_custom_if();

    if(logo_cust_if->show_battery_capacity)
    {
    	logo_cust_if->show_battery_capacity(capacity);
    }
    else
    {   
        #ifdef ANIMATION_NEW
        cust_show_battery_capacity_new(capacity);
        #else
        cust_show_battery_capacity(capacity);
        #endif
    }

    return;
}
void mt65xx_disp_show_battery_full(void)
{
    mt65xx_logo_get_custom_if();

    if(logo_cust_if->show_battery_full)
    {
    	logo_cust_if->show_battery_full();
    }
    else
    {
        #ifdef ANIMATION_NEW
        cust_show_battery_capacity_new(100);
        #else
        cust_show_battery_capacity(100);
        #endif
    }

    return;
}