Hi,
We developed an app and run on the am62x evm.
I found a problem that there is almost 1 second delay when switch activity(Image).
And the system log always display below log when the activity switched.
How to solve this time out problem?
By the way, does the android sdk default to enable GPU driver?
How can I confirm the GPU function is work?
I also developed an test application ran the app on am62x/ am572x/ Pad to calculate the delay time for creating activity
>>protected void onCreate(Bundle savedInstanceState) {
>> Log.d(TAG, "onClick: onCreate 1: " + System.currentTimeMillis());
>> super.onCreate(savedInstanceState);
>> setContentView(R.layout.activity_main);
>> Log.d(TAG, "onClick: onCreate 2: " + System.currentTimeMillis());
>>}
1. am62x: almost delay about 200 ms
2. am572x: almost delay about 90~100 ms
3. Pad: almost delay about 40 ms
Attaching the adb/bootup log, delay time file, example code.
DelayTime.xlsxam62x_boot_log.txtam62x_logcat.txt
Ken