This is an example of how to use the AppProgressBar class.
#include <app_base.h>
#include <app_progress_bar.h>
void
{
unsigned int step, step_count;
step_count = 1000;
for (step = 0; step < step_count; step++) {
progress_bar->
step(step + 1);
}
step_count = 4000;
for (step = 0; step < step_count; step++) {
progress_bar->
step(step + 1);
}
}