Quantcast
Channel: Forum - Recent Threads
Viewing all 4262 articles
Browse latest View live

RTC Power Down Not Work

$
0
0

Hi,

We are trying to start a RTC clock and keep the time when we turn off the power.

We are working with a custom board with a Synergy S5D9, with the latest BSP 1.7.0 and E2 Studio ver: 7.3.0.

We have managed to operate the RTC when there is power but if we turn off the device, when we turn it on again the time date has not been updated while there was no voltage.

The electrical circuit is as follows, we use a supercap to maintain tension:

We have measured the signal of the crystal and it gives us the following image both when there is power on and when there is power off:

The configurations in the e2 studio for the CGC, RTC and BSP are as follows:

And the RTC initialization code is as follows:

Can someone help us find the problem?

Thanks in advance.


GUIX Question: Is there a way to use the vertical scroll function inside GUIX ?

$
0
0

Trying to design bunch of buttons inside a 480*272 screen with the ability to scroll,

I am able to design right now by making the overall screen bigger and add some buttons outside the 480*272 and scroll in the target platform to view it.

But is there a way on GUIX to use the vertical scroll and design buttons with in the same 480*272 window space?

 

GUIX 5.4.1.1

SSP 1.6.3

CODE FLASH S7-G2 - Custom board

$
0
0

Hello,

 

My requirement is to store a bunch(1000 samples) of sensor values on flash in case the network fails during transmission. I use a custom S7-G2 board and so far I manage to store something on the data flash and it works fine. But I' intend to use code flash and there seems to be a problem with the api to erase even with configuration settings having code flash enabled even with the same addressing given in the example. Does the addressing change with the different S7g2 processors?

Also, where can I find more details on addressing of this flash memory block.

#define FLASH_CF_32KB_BLOCK64 (0x001D0000)
#define FLASH_CF_BLOCK_SIZE_32KB (32 * 1024)

err = g_flash.p_api->erase(g_flash.p_ctrl, FLASH_CF_32KB_BLOCK64, 1 );

RTC - Sub clock stopping at POR

$
0
0

Hi,

As per the datasheet and debugging, looks like the sub clock stops at the reset till it is started in RTC initialisation. This results in losing RTC time, every time the system boots. I am losing few seconds every time I am booting. Is there any workaround for this? 

In the hardware, RTC battery backup is provided to keep the RTC running when there is no power. 

My RTC initialisation code is as below 

ssp_err_t err;
rtc_info_t rtc_info;

// Init RTC
err = g_rtc.p_api->open(g_rtc.p_ctrl, g_rtc.p_cfg);
if(err != SSP_SUCCESS)
{
while(1);
}

// Get RTC status
err = g_rtc.p_api->infoGet(g_rtc.p_ctrl, &rtc_info);
if(err != SSP_SUCCESS)
{
while(1);
}

// Get subclock active status
err = g_cgc_on_cgc.clockCheck(CGC_CLOCK_SUBCLOCK);

// If RTC or sub-clock was stopped
if ((rtc_info.status == RTC_STATUS_STOPPED) || (err == SSP_ERR_CLOCK_INACTIVE))
{

printf("\r\nRTC STATUS = %s", rtc_info.status == RTC_STATUS_STOPPED? "Stopped" : "Started");
printf("\r\nSUB CLOCK STATUS = %s", err == SSP_ERR_CLOCK_INACTIVE? "Inactive" : "Active");

// Configure RTC anc clock
err = g_rtc.p_api->configure(g_rtc.p_ctrl, NULL);
if(err != SSP_SUCCESS)
{
err = g_rtc.p_api->configure(g_rtc.p_ctrl, NULL);
if(err != SSP_SUCCESS)
{
while(1);
}
}

// Start the RTC
err = g_rtc.p_api->calendarCounterStart(g_rtc.p_ctrl);
if(err != SSP_SUCCESS)
{
while(1);
}
}

The sub clock status at every boot up is returned as "Inactive".

CGC and RTC settings in my project are as below and I am using SSP version 1.4.1.

 

 

 

Has anyone came around this problem?

Thanks,

Meenanath

Problem in executing the code from RENESAS FLASH PROGRAMMER V3.06

$
0
0

I had a  project up and running on DKs7g2 board, but when i tried flashing the code from RENESAS FLASH PROGRAMMER V3.06 with Micro USB cable, the status tab showed an error that code size big for the flash ROM memory. Apparently my code size was just around 820kb(19% of the total 4Mb) . After a lot of surfing, I got a solution in this regard from one of the discussion threads here at forum, which suggested marking SPP Vector table as NOLOAD in the .ld file. Changing it to NO LOAD did work and i could flash the code successfully. However, now the problem is that the code seems to be not executing on DKS7g2 board. I checked gain with debugging in e2studio and it worked just fine, whitout any changes.

Can some one help me what might be the cause??

** PS I have removed all Printf and commented intialise_monitor_handles() from the code, but the code is still not working.

** The display just shows white light for a second and goes off

I am attaching an image regarding  the only setting i changed in the .ld file below here.

PMOD ACL accelerometer with s7g2

$
0
0

How to use PMOD ACL accelerometer to communicate with s7g2 sk using i2c bus?

Building of custom library "libgx.a" from GUIX Source

$
0
0

Hi all,

In my GUIX project I included the GUIX Source (because I defned my own values for GX_REPEAT_BUTTON_INITIAL_TICS and GX_REPEAT_BUTTON_REPEAT_TICS).

The building of the project takes long time, about 7 min on my PC.

Is there a way to build my own "libgx.a"? (which is stored in: ..\synergy\ssp\src\framework\el\gx\cm4_gcc)

Thanks for your help

USB-FS and COM port settings: for long cables

$
0
0

Our current design uses the USB-FS port and works fine, instantiating on the PC as a COM port for our low-level traffic (appr. 50 bytes about once per second).

However we now have a request for to use 15 meter cable, which is beyond the 3 to 5 meter limit of the various USB versions.  We would prefer to not add a UART stack and implement RS-232.  We will consider using a repeater cable but this solution has issues in the application.

So question: when the Synergy CDC driver sets up communications as a COM port, are the COM port settings in Device Manager active?  In particular, is the data rate of this connection consistent with USB-FS or with the COM port settings?

Asking because the simplest solution for our problem would be to open COM port settings and configure for 9600 baud or so, which should be good for several 10's of meters.  This may require using different physical cable (which is OK), we're thinking maybe CAT-5.

Has anyone encountered similar cable length and/or COM port configuration behavior?  Or tried longer USB distances using CAT-5?


Renesas Synergy Flashloader Utility Issue with COM Port connect

$
0
0

Hi, I am using SK-S7G2 starter kit. I have followed the Application note of Customizable Flashloader Solution for Synergy MCUs for USB-CDC-Blocking from the below link. https://synergygallery.renesas.com/media/products/74/193/en-US/r11an0073eu0100-synergy-ssp-flashloader.pdf

As mentioned in the above application note, I have set the minimum pc requirements and able to set up bootloader_usb_cdc_blocking project and downloader_usb_cdc_blocking project and after debugging the downloader_usb_cdc_blocking project into my started kit, I could able to see the Synergy_USB_Boot COM port successfully in the device manager. 

After that, if I try to connect COM port in Renesas Synergy Flashloader Utility project, it doesn't connect. And In the execution log show no message. 

 

Help me to find out the problem with the connection. 

 

Thanks 

Prabakaran

 

Managing dependencies and source control of CMSIS packs in e2

$
0
0

I'm going through the “USB host boot nano” fire drill that a few other posters have discovered when upgrading SSP.  I'd rather not have a whole other repository for software packs, and it would be nice to check in these "unsupported" packs like this so I can track my changes.  Do you guys have any guidance on either incorporating a pack into a project or referencing a pack in a source controlled location without installing it to "C:\Renesas\e2_studio\internal\projectgen\arm\packs".  Maybe it could even be installed as part of the build.  As it stands, this project depends on uncontrolled changes to the machine doing the build.

Regards,

Matt Farley

RTC and VBATT question

$
0
0

Hello, I want to detect a specific situation related of RTC and VBATT.

My supercap only retain a couple of days. I can´t to increase the capacitor (currently 0,22 F) or install a lithium button battery.
I want to force to the final user to set the new date and time when the application start from a long time power off.

I need to detect the stop of RTC when the power supply from VBATT will below of 1.8V (Table 60.2).



Are there any registres for this situation?

Thank you

e2 studio related problem

$
0
0

I used e2 studio for s7g2 micro-controller and i require to download program in micro controller without using external power supply.i used j link debugger 

Problems changing baudrate in the uart

$
0
0

Hi.

I am working with SSP 1.5.3 and e2studio 7.6.0.

I need to be able to change the baudrate of the uart from my application.

In SSP I have configured as follows:

 

 

When I open the driver I do the following:

err = g_uart5.p_api->open(g_uart5.p_ctrl, g_uart5.p_cfg);

if(err != SSP_SUCCESS)
{
// error_trap(err, "g_uart4.p_api->open");
}

sDatos.sConfig.niVel232=VS_19200;


// Set baud rate
switch (sDatos.sConfig.niVel232) {
case VS_9600:
err = g_uart5.p_api->baudSet(g_uart5.p_ctrl, (uint32_t)9600);
break;
case VS_19200:
err = g_uart5.p_api->baudSet(g_uart5.p_ctrl, (uint32_t)19200);
break;
case VS_38400:
err = g_uart5.p_api->baudSet(g_uart5.p_ctrl, (uint32_t)38400);
break;
case VS_57600:
err = g_uart5.p_api->baudSet(g_uart5.p_ctrl, (uint32_t)57600);
break;
}

If the master making requests through the port at 19200, when the equipment starts the communication is successful at 19200 baud.

If the master makes requests by the port to 19200, after the equipment has been started, the communication does not work. I change the master to 57600 baud and the communication works correctly.

From what I see, the baudrate I configure is not taking me well, giving preference to the one configured in the SSP.

 

Can someone help me?

 

Thanks 

 

e2 studio either doesn't run/ crashes too frequently

$
0
0

The e2 studio app either does not open or crashes abrubtly.

Can someone please help me with the reason. I am attaching the log file herewith. My desktop runs windows 10

#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x74effd97, pid=10244, tid=0x00000f1c
#
# JRE version: Java(TM) SE Runtime Environment (8.0_181-b13) (build 1.8.0_181-b13)
# Java VM: Java HotSpot(TM) Client VM (25.181-b13 mixed mode windows-x86 )
# Problematic frame:
# V [jvm.dll+0xbfd97]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# If you would like to submit a bug report, please visit:
# bugreport.java.com/.../crash.jsp
#

--------------- T H R E A D ---------------

Current thread (0x025d8400): ConcurrentGCThread [stack: 0x05120000,0x05220000] [id=3868]

siginfo: ExceptionCode=0xc0000005, reading address 0x000000d0

Registers:
EAX=0x00000000, EBX=0x00000004, ECX=0x00000014, EDX=0x00400000
ESP=0x0521fb30, EBP=0x0521fb3c, ESI=0x0521fc18, EDI=0x06d52158
EIP=0x74effd97, EFLAGS=0x00010202

Top of Stack: (sp=0x0521fb30)
0x0521fb30: 00000014 06d5216c 06d52158 0521fb54
0x0521fb40: 74f1333e 06d52158 06d52170 06d52120
0x0521fb50: 47e005b0 0521fb90 750ad915 06d52120
0x0521fb60: 0521fbb8 02585708 06d52000 00000000
0x0521fb70: 06d52000 00000080 0258fb0c 0521fba0
0x0521fb80: 750a3d10 00000000 06d52124 02587bf8
0x0521fb90: 0521fc54 750a7724 06d52000 00000080
0x0521fba0: 0521fbb8 06d52000 06d52200 48818b20

Instructions: (pc=0x74effd97)
0x74effd77: 08 8b 17 8b f1 85 d2 74 6d 8b 46 0c 8b 88 cc 00
0x74effd87: 00 00 8b 80 c4 00 00 00 53 8b da d3 eb 8b 04 98
0x74effd97: 8b 88 d0 00 00 00 5b 83 f9 05 75 06 8b 80 d4 00
0x74effda7: 00 00 39 46 14 74 3f 80 7e 1c 00 74 26 80 b8 dc


Register to memory mapping:

EAX=0x00000000 is an unknown value
EBX=0x00000004 is an unknown value
ECX=0x00000014 is an unknown value
EDX=0x00400000 is an unknown value
ESP=0x0521fb30 is an unknown value
EBP=0x0521fb3c is an unknown value
ESI=0x0521fc18 is an unknown value
EDI=0x06d52158 is pointing into object: 0x06d52120
[Ljava.util.HashMap$Node;
- klass: 'java/util/HashMap$Node'[]
- length: 16


Stack: [0x05120000,0x05220000], sp=0x0521fb30, free space=1022k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [jvm.dll+0xbfd97]
V [jvm.dll+0xd333e]
V [jvm.dll+0x26d915]
V [jvm.dll+0x267724]
V [jvm.dll+0x252922]
V [jvm.dll+0x24ff7c]
V [jvm.dll+0x2502d8]
V [jvm.dll+0x25032f]
V [jvm.dll+0x249e9e]
C [MSVCR100.dll+0x5c556]
C [MSVCR100.dll+0x5c600]
C [KERNEL32.DLL+0x1fe09]
C [ntdll.dll+0x6607d]
C [ntdll.dll+0x6604d]


--------------- P R O C E S S ---------------

Java Threads: ( => current thread )
0x51d5c800 JavaThread "Event Loop Monitor" daemon [_thread_blocked, id=8484, stack(0x57b60000,0x57c60000)]
0x4d8c3400 JavaThread "Thread-8" [_thread_blocked, id=11080, stack(0x57a20000,0x57b20000)]
0x4e329400 JavaThread "Thread-7" daemon [_thread_in_native, id=76, stack(0x578e0000,0x579e0000)]
0x4e32ac00 JavaThread "Thread-6" [_thread_blocked, id=10736, stack(0x57460000,0x57560000)]
0x4e32a000 JavaThread "IS Control Socket" [_thread_in_native, id=2184, stack(0x56380000,0x56480000)]
0x4e329800 JavaThread "Integration Sevice" [_thread_blocked, id=3976, stack(0x56230000,0x56330000)]
0x4e32cc00 JavaThread "Worker-12" [_thread_blocked, id=6152, stack(0x55ff0000,0x560f0000)]
0x4e32c400 JavaThread "Worker-11" [_thread_blocked, id=9712, stack(0x55db0000,0x55eb0000)]
0x4e32b000 JavaThread "Worker-10" [_thread_in_native, id=6904, stack(0x55c70000,0x55d70000)]
0x4e32a400 JavaThread "Worker-9" [_thread_blocked, id=8172, stack(0x55b30000,0x55c30000)]
0x4e32b800 JavaThread "Worker-8" [_thread_blocked, id=1156, stack(0x558f0000,0x559f0000)]
0x4e32c000 JavaThread "Worker-7" [_thread_blocked, id=10620, stack(0x557b0000,0x558b0000)]
0x4d8c3000 JavaThread "Worker-6" [_thread_blocked, id=5808, stack(0x55670000,0x55770000)]
0x4d8c2400 JavaThread "Worker-5" [_thread_in_native, id=280, stack(0x55530000,0x55630000)]
0x4d8c2800 JavaThread "Worker-4" [_thread_in_vm, id=5584, stack(0x553f0000,0x554f0000)]
0x4d8c1c00 JavaThread "Worker-3" [_thread_in_vm, id=6800, stack(0x552b0000,0x553b0000)]
0x4d8c1400 JavaThread "Worker-2" [_thread_blocked, id=6252, stack(0x55170000,0x55270000)]
0x4d8c4800 JavaThread "Worker-1" [_thread_in_native, id=10484, stack(0x55030000,0x55130000)]
0x4d8c4000 JavaThread "EventAdmin Async Event Dispatcher Thread" daemon [_thread_blocked, id=10572, stack(0x54f30000,0x55030000)]
0x4d8c3c00 JavaThread "org.eclipse.cdt.internal.ui.text.CReconciler" daemon [_thread_blocked, id=5372, stack(0x52950000,0x52a50000)]
0x4d8c1000 JavaThread "Java indexing" daemon [_thread_blocked, id=6176, stack(0x4f7c0000,0x4f8c0000)]
0x4a341800 JavaThread "Worker-0" [_thread_blocked, id=216, stack(0x4e970000,0x4ea70000)]
0x4a82a800 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=11172, stack(0x4b770000,0x4b870000)]
0x4a7de400 JavaThread "EMF Reference Cleaner" daemon [_thread_blocked, id=8024, stack(0x4b530000,0x4b630000)]
0x4a47e000 JavaThread "Worker-JM" [_thread_blocked, id=4296, stack(0x4b1f0000,0x4b2f0000)]
0x4a22dc00 JavaThread "SCR Component Actor" daemon [_thread_blocked, id=7924, stack(0x4ad70000,0x4ae70000)]
0x4a21c400 JavaThread "Framework Event Dispatcher: org.eclipse.osgi.internal.framework.EquinoxEventPublisher@19a3670" daemon [_thread_blocked, id=10932, stack(0x4ab30000,0x4ac30000)]
0x4a1df000 JavaThread "Start Level: Equinox Container: a5f5bd15-38a3-4cb6-8bd9-ecc4174378bd" daemon [_thread_blocked, id=7040, stack(0x4a9f0000,0x4aaf0000)]
0x487cf400 JavaThread "Active Thread: Equinox Container: a5f5bd15-38a3-4cb6-8bd9-ecc4174378bd" [_thread_blocked, id=924, stack(0x4a0b0000,0x4a1b0000)]
0x48542000 JavaThread "Service Thread" daemon [_thread_blocked, id=768, stack(0x49260000,0x49360000)]
0x4853cc00 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=8444, stack(0x49120000,0x49220000)]
0x48538400 JavaThread "Attach Listener" daemon [_thread_blocked, id=4412, stack(0x48fe0000,0x490e0000)]
0x48537c00 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=11092, stack(0x48ea0000,0x48fa0000)]
0x47efe400 JavaThread "Surrogate Locker Thread (Concurrent GC)" daemon [_thread_blocked, id=5656, stack(0x48d60000,0x48e60000)]
0x47ef4800 JavaThread "Finalizer" daemon [_thread_blocked, id=5984, stack(0x48b20000,0x48c20000)]
0x47eef000 JavaThread "Reference Handler" daemon [_thread_blocked, id=8016, stack(0x489e0000,0x48ae0000)]
0x026de000 JavaThread "main" [_thread_in_native, id=8224, stack(0x000a0000,0x001a0000)]

Other Threads:
0x47eed400 VMThread [stack: 0x488a0000,0x489a0000] [id=5016]
0x48545400 WatcherThread [stack: 0x493a0000,0x494a0000] [id=6076]

=>0x025d8400 (exited) ConcurrentGCThread [stack: 0x05120000,0x05220000] [id=3868]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x026db9b0] Threads_lock - owner thread: 0x4d8c1c00

Heap:
garbage-first heap total 278528K, used 121700K [0x05400000, 0x05500440, 0x45400000)
region size 1024K, 37 young (37888K), 17 survivors (17408K)
Metaspace used 59329K, capacity 63736K, committed 63744K, reserved 63872K

Heap Regions: (Y=young(eden), SU=young(survivor), HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TS=gc time stamp, PTAMS=previous top-at-mark-start, NTAMS=next top-at-mark-start)
AC 0 O TS 0 PTAMS 0x05500000 NTAMS 0x05500000 space 1024K, 100% used [0x05400000, 0x05500000)
AC 0 O TS 0 PTAMS 0x05600000 NTAMS 0x05600000 space 1024K, 100% used [0x05500000, 0x05600000)
AC 0 O TS 0 PTAMS 0x05700000 NTAMS 0x05700000 space 1024K, 100% used [0x05600000, 0x05700000)
AC 0 O TS 0 PTAMS 0x05800000 NTAMS 0x05800000 space 1024K, 100% used [0x05700000, 0x05800000)
AC 0 O TS 0 PTAMS 0x05900000 NTAMS 0x05900000 space 1024K, 100% used [0x05800000, 0x05900000)
AC 0 O TS 0 PTAMS 0x05a00000 NTAMS 0x05a00000 space 1024K, 100% used [0x05900000, 0x05a00000)
AC 0 O TS 0 PTAMS 0x05b00000 NTAMS 0x05b00000 space 1024K, 100% used [0x05a00000, 0x05b00000)
AC 0 O TS 0 PTAMS 0x05c00000 NTAMS 0x05c00000 space 1024K, 100% used [0x05b00000, 0x05c00000)
AC 0 O TS 0 PTAMS 0x05d00000 NTAMS 0x05d00000 space 1024K, 100% used [0x05c00000, 0x05d00000)
AC 0 O TS 0 PTAMS 0x05e00000 NTAMS 0x05e00000 space 1024K, 100% used [0x05d00000, 0x05e00000)
AC 0 O TS 0 PTAMS 0x05f00000 NTAMS 0x05f00000 space 1024K, 100% used [0x05e00000, 0x05f00000)
AC 0 O TS 0 PTAMS 0x06000000 NTAMS 0x06000000 space 1024K, 100% used [0x05f00000, 0x06000000)
AC 0 O TS 0 PTAMS 0x06100000 NTAMS 0x06100000 space 1024K, 100% used [0x06000000, 0x06100000)
AC 0 O TS 0 PTAMS 0x06200000 NTAMS 0x06200000 space 1024K, 100% used [0x06100000, 0x06200000)
AC 0 F TS 0 PTAMS 0x06200000 NTAMS 0x06200000 space 1024K, 0% used [0x06200000, 0x06300000)
AC 0 F TS 0 PTAMS 0x06300000 NTAMS 0x06300000 space 1024K, 0% used [0x06300000, 0x06400000)
AC 0 HS TS 0 PTAMS 0x06400000 NTAMS 0x0649f3e0 space 1024K, 62% used [0x06400000, 0x06500000)
AC 0 F TS 0 PTAMS 0x06500000 NTAMS 0x06500000 space 1024K, 0% used [0x06500000, 0x06600000)
AC 0 HS TS 0 PTAMS 0x06600000 NTAMS 0x066b9f80 space 1024K, 72% used [0x06600000, 0x06700000)
AC 0 O TS 1 PTAMS 0x06700000 NTAMS 0x06800000 space 1024K, 100% used [0x06700000, 0x06800000)
AC 0 O TS 1 PTAMS 0x06800000 NTAMS 0x06900000 space 1024K, 100% used [0x06800000, 0x06900000)
AC 0 O TS 1 PTAMS 0x06900000 NTAMS 0x06a00000 space 1024K, 100% used [0x06900000, 0x06a00000)
AC 0 O TS 1 PTAMS 0x06a00000 NTAMS 0x06b00000 space 1024K, 100% used [0x06a00000, 0x06b00000)
AC 0 O TS 1 PTAMS 0x06b00000 NTAMS 0x06c00000 space 1024K, 100% used [0x06b00000, 0x06c00000)
AC 0 O TS 1 PTAMS 0x06c00000 NTAMS 0x06d00000 space 1024K, 100% used [0x06c00000, 0x06d00000)
AC 0 O TS 1 PTAMS 0x06d00000 NTAMS 0x06e00000 space 1024K, 100% used [0x06d00000, 0x06e00000)
AC 0 O TS 1 PTAMS 0x06e00000 NTAMS 0x06f00000 space 1024K, 100% used [0x06e00000, 0x06f00000)
AC 0 O TS 0 PTAMS 0x07000000 NTAMS 0x07000000 space 1024K, 100% used [0x06f00000, 0x07000000)
AC 0 O TS 1 PTAMS 0x07000000 NTAMS 0x07100000 space 1024K, 100% used [0x07000000, 0x07100000)
AC 0 O TS 1 PTAMS 0x07100000 NTAMS 0x07200000 space 1024K, 100% used [0x07100000, 0x07200000)
AC 0 O TS 0 PTAMS 0x07300000 NTAMS 0x07300000 space 1024K, 100% used [0x07200000, 0x07300000)
AC 0 O TS 0 PTAMS 0x07400000 NTAMS 0x07400000 space 1024K, 100% used [0x07300000, 0x07400000)
AC 0 O TS 0 PTAMS 0x07500000 NTAMS 0x07500000 space 1024K, 100% used [0x07400000, 0x07500000)
AC 0 O TS 0 PTAMS 0x07600000 NTAMS 0x07600000 space 1024K, 100% used [0x07500000, 0x07600000)
AC 0 O TS 0 PTAMS 0x07700000 NTAMS 0x07700000 space 1024K, 100% used [0x07600000, 0x07700000)
AC 0 O TS 0 PTAMS 0x07800000 NTAMS 0x07800000 space 1024K, 100% used [0x07700000, 0x07800000)
AC 0 O TS 0 PTAMS 0x07900000 NTAMS 0x07900000 space 1024K, 100% used [0x07800000, 0x07900000)
AC 0 O TS 0 PTAMS 0x07a00000 NTAMS 0x07a00000 space 1024K, 100% used [0x07900000, 0x07a00000)
AC 0 O TS 0 PTAMS 0x07b00000 NTAMS 0x07b00000 space 1024K, 100% used [0x07a00000, 0x07b00000)
AC 0 O TS 0 PTAMS 0x07c00000 NTAMS 0x07c00000 space 1024K, 100% used [0x07b00000, 0x07c00000)
AC 0 O TS 0 PTAMS 0x07d00000 NTAMS 0x07d00000 space 1024K, 100% used [0x07c00000, 0x07d00000)
AC 0 O TS 0 PTAMS 0x07e00000 NTAMS 0x07e00000 space 1024K, 100% used [0x07d00000, 0x07e00000)
AC 0 O TS 0 PTAMS 0x07f00000 NTAMS 0x07f00000 space 1024K, 100% used [0x07e00000, 0x07f00000)
AC 0 O TS 0 PTAMS 0x08000000 NTAMS 0x08000000 space 1024K, 100% used [0x07f00000, 0x08000000)
AC 0 O TS 0 PTAMS 0x08100000 NTAMS 0x08100000 space 1024K, 100% used [0x08000000, 0x08100000)
AC 0 O TS 0 PTAMS 0x08200000 NTAMS 0x08200000 space 1024K, 100% used [0x08100000, 0x08200000)
AC 0 O TS 0 PTAMS 0x08300000 NTAMS 0x08300000 space 1024K, 100% used [0x08200000, 0x08300000)
AC 0 O TS 0 PTAMS 0x08400000 NTAMS 0x08400000 space 1024K, 100% used [0x08300000, 0x08400000)
AC 0 O TS 0 PTAMS 0x08500000 NTAMS 0x08500000 space 1024K, 100% used [0x08400000, 0x08500000)
AC 0 O TS 0 PTAMS 0x08600000 NTAMS 0x08600000 space 1024K, 100% used [0x08500000, 0x08600000)
AC 0 O TS 0 PTAMS 0x08700000 NTAMS 0x08700000 space 1024K, 100% used [0x08600000, 0x08700000)
AC 0 O TS 1 PTAMS 0x08700000 NTAMS 0x08800000 space 1024K, 100% used [0x08700000, 0x08800000)
AC 0 O TS 1 PTAMS 0x08800000 NTAMS 0x08900000 space 1024K, 100% used [0x08800000, 0x08900000)
AC 0 O TS 0 PTAMS 0x08a00000 NTAMS 0x08a00000 space 1024K, 100% used [0x08900000, 0x08a00000)
AC 0 O TS 1 PTAMS 0x08a00000 NTAMS 0x08a80000 space 1024K, 50% used [0x08a00000, 0x08b00000)
AC 0 F TS 0 PTAMS 0x08b00000 NTAMS 0x08b00000 space 1024K, 0% used [0x08b00000, 0x08c00000)
AC 0 F TS 0 PTAMS 0x08c00000 NTAMS 0x08c00000 space 1024K, 0% used [0x08c00000, 0x08d00000)
AC 0 F TS 0 PTAMS 0x08d00000 NTAMS 0x08d00000 space 1024K, 0% used [0x08d00000, 0x08e00000)
AC 0 F TS 0 PTAMS 0x08e00000 NTAMS 0x08e00000 space 1024K, 0% used [0x08e00000, 0x08f00000)
AC 0 F TS 0 PTAMS 0x08f00000 NTAMS 0x08f00000 space 1024K, 0% used [0x08f00000, 0x09000000)
AC 0 O TS 0 PTAMS 0x09100000 NTAMS 0x09100000 space 1024K, 100% used [0x09000000, 0x09100000)
AC 0 O TS 0 PTAMS 0x09200000 NTAMS 0x09200000 space 1024K, 100% used [0x09100000, 0x09200000)
AC 0 O TS 0 PTAMS 0x09300000 NTAMS 0x09300000 space 1024K, 100% used [0x09200000, 0x09300000)
AC 0 O TS 0 PTAMS 0x09400000 NTAMS 0x09400000 space 1024K, 100% used [0x09300000, 0x09400000)
AC 0 O TS 0 PTAMS 0x09500000 NTAMS 0x09500000 space 1024K, 100% used [0x09400000, 0x09500000)
AC 0 O TS 0 PTAMS 0x09600000 NTAMS 0x09600000 space 1024K, 100% used [0x09500000, 0x09600000)
AC 0 O TS 0 PTAMS 0x09700000 NTAMS 0x09700000 space 1024K, 100% used [0x09600000, 0x09700000)
AC 0 O TS 0 PTAMS 0x09800000 NTAMS 0x09800000 space 1024K, 100% used [0x09700000, 0x09800000)
AC 0 O TS 0 PTAMS 0x09900000 NTAMS 0x09900000 space 1024K, 100% used [0x09800000, 0x09900000)
AC 0 O TS 0 PTAMS 0x09a00000 NTAMS 0x09a00000 space 1024K, 100% used [0x09900000, 0x09a00000)
AC 0 O TS 0 PTAMS 0x09b00000 NTAMS 0x09b00000 space 1024K, 100% used [0x09a00000, 0x09b00000)
AC 0 O TS 0 PTAMS 0x09c00000 NTAMS 0x09c00000 space 1024K, 100% used [0x09b00000, 0x09c00000)
AC 0 O TS 0 PTAMS 0x09d00000 NTAMS 0x09d00000 space 1024K, 100% used [0x09c00000, 0x09d00000)
AC 0 O TS 0 PTAMS 0x09e00000 NTAMS 0x09e00000 space 1024K, 100% used [0x09d00000, 0x09e00000)
AC 0 O TS 0 PTAMS 0x09f00000 NTAMS 0x09f00000 space 1024K, 100% used [0x09e00000, 0x09f00000)
AC 0 F TS 0 PTAMS 0x09f00000 NTAMS 0x09f00000 space 1024K, 0% used [0x09f00000, 0x0a000000)
AC 0 F TS 0 PTAMS 0x0a000000 NTAMS 0x0a000000 space 1024K, 0% used [0x0a000000, 0x0a100000)
AC 0 F TS 0 PTAMS 0x0a100000 NTAMS 0x0a100000 space 1024K, 0% used [0x0a100000, 0x0a200000)
AC 0 F TS 0 PTAMS 0x0a200000 NTAMS 0x0a200000 space 1024K, 0% used [0x0a200000, 0x0a300000)
AC 0 F TS 0 PTAMS 0x0a300000 NTAMS 0x0a300000 space 1024K, 0% used [0x0a300000, 0x0a400000)
AC 0 F TS 0 PTAMS 0x0a400000 NTAMS 0x0a400000 space 1024K, 0% used [0x0a400000, 0x0a500000)
AC 0 F TS 0 PTAMS 0x0a500000 NTAMS 0x0a500000 space 1024K, 0% used [0x0a500000, 0x0a600000)
AC 0 O TS 0 PTAMS 0x0a700000 NTAMS 0x0a700000 space 1024K, 100% used [0x0a600000, 0x0a700000)
AC 0 F TS 0 PTAMS 0x0a700000 NTAMS 0x0a700000 space 1024K, 0% used [0x0a700000, 0x0a800000)
AC 0 F TS 0 PTAMS 0x0a800000 NTAMS 0x0a800000 space 1024K, 0% used [0x0a800000, 0x0a900000)
AC 0 F TS 0 PTAMS 0x0a900000 NTAMS 0x0a900000 space 1024K, 0% used [0x0a900000, 0x0aa00000)
AC 0 F TS 0 PTAMS 0x0aa00000 NTAMS 0x0aa00000 space 1024K, 0% used [0x0aa00000, 0x0ab00000)
AC 0 F TS 0 PTAMS 0x0ab00000 NTAMS 0x0ab00000 space 1024K, 0% used [0x0ab00000, 0x0ac00000)
AC 0 F TS 0 PTAMS 0x0ac00000 NTAMS 0x0ac00000 space 1024K, 0% used [0x0ac00000, 0x0ad00000)
AC 0 F TS 0 PTAMS 0x0ad00000 NTAMS 0x0ad00000 space 1024K, 0% used [0x0ad00000, 0x0ae00000)
AC 0 F TS 0 PTAMS 0x0ae00000 NTAMS 0x0ae00000 space 1024K, 0% used [0x0ae00000, 0x0af00000)
AC 0 F TS 0 PTAMS 0x0af00000 NTAMS 0x0af00000 space 1024K, 0% used [0x0af00000, 0x0b000000)
AC 0 F TS 0 PTAMS 0x0b000000 NTAMS 0x0b000000 space 1024K, 0% used [0x0b000000, 0x0b100000)
AC 0 F TS 0 PTAMS 0x0b100000 NTAMS 0x0b100000 space 1024K, 0% used [0x0b100000, 0x0b200000)
AC 0 F TS 0 PTAMS 0x0b200000 NTAMS 0x0b200000 space 1024K, 0% used [0x0b200000, 0x0b300000)
AC 0 F TS 0 PTAMS 0x0b300000 NTAMS 0x0b300000 space 1024K, 0% used [0x0b300000, 0x0b400000)
AC 0 F TS 0 PTAMS 0x0b400000 NTAMS 0x0b400000 space 1024K, 0% used [0x0b400000, 0x0b500000)
AC 0 F TS 0 PTAMS 0x0b500000 NTAMS 0x0b500000 space 1024K, 0% used [0x0b500000, 0x0b600000)
AC 0 F TS 0 PTAMS 0x0b600000 NTAMS 0x0b600000 space 1024K, 0% used [0x0b600000, 0x0b700000)
AC 0 F TS 0 PTAMS 0x0b700000 NTAMS 0x0b700000 space 1024K, 0% used [0x0b700000, 0x0b800000)
AC 0 F TS 0 PTAMS 0x0b800000 NTAMS 0x0b800000 space 1024K, 0% used [0x0b800000, 0x0b900000)
AC 0 F TS 0 PTAMS 0x0b900000 NTAMS 0x0b900000 space 1024K, 0% used [0x0b900000, 0x0ba00000)
AC 0 F TS 0 PTAMS 0x0ba00000 NTAMS 0x0ba00000 space 1024K, 0% used [0x0ba00000, 0x0bb00000)
AC 0 F TS 0 PTAMS 0x0bb00000 NTAMS 0x0bb00000 space 1024K, 0% used [0x0bb00000, 0x0bc00000)
AC 0 F TS 0 PTAMS 0x0bc00000 NTAMS 0x0bc00000 space 1024K, 0% used [0x0bc00000, 0x0bd00000)
AC 0 O TS 0 PTAMS 0x0be00000 NTAMS 0x0be00000 space 1024K, 100% used [0x0bd00000, 0x0be00000)
AC 0 O TS 0 PTAMS 0x0bf00000 NTAMS 0x0bf00000 space 1024K, 100% used [0x0be00000, 0x0bf00000)
AC 0 O TS 0 PTAMS 0x0c000000 NTAMS 0x0c000000 space 1024K, 100% used [0x0bf00000, 0x0c000000)
AC 0 O TS 0 PTAMS 0x0c100000 NTAMS 0x0c100000 space 1024K, 100% used [0x0c000000, 0x0c100000)
AC 0 O TS 0 PTAMS 0x0c200000 NTAMS 0x0c200000 space 1024K, 100% used [0x0c100000, 0x0c200000)
AC 0 O TS 0 PTAMS 0x0c300000 NTAMS 0x0c300000 space 1024K, 100% used [0x0c200000, 0x0c300000)
AC 0 O TS 0 PTAMS 0x0c400000 NTAMS 0x0c400000 space 1024K, 100% used [0x0c300000, 0x0c400000)
AC 0 O TS 0 PTAMS 0x0c500000 NTAMS 0x0c500000 space 1024K, 100% used [0x0c400000, 0x0c500000)
AC 0 O TS 0 PTAMS 0x0c600000 NTAMS 0x0c600000 space 1024K, 100% used [0x0c500000, 0x0c600000)
AC 0 O TS 0 PTAMS 0x0c700000 NTAMS 0x0c700000 space 1024K, 100% used [0x0c600000, 0x0c700000)
AC 0 O TS 0 PTAMS 0x0c800000 NTAMS 0x0c800000 space 1024K, 100% used [0x0c700000, 0x0c800000)
AC 0 O TS 0 PTAMS 0x0c900000 NTAMS 0x0c900000 space 1024K, 100% used [0x0c800000, 0x0c900000)
AC 0 F TS 0 PTAMS 0x0c900000 NTAMS 0x0c900000 space 1024K, 0% used [0x0c900000, 0x0ca00000)
AC 0 S CS TS 1 PTAMS 0x0ca00000 NTAMS 0x0ca00000 space 1024K, 100% used [0x0ca00000, 0x0cb00000)
AC 0 S CS TS 1 PTAMS 0x0cb00000 NTAMS 0x0cb00000 space 1024K, 100% used [0x0cb00000, 0x0cc00000)
AC 0 S CS TS 1 PTAMS 0x0cc00000 NTAMS 0x0cc00000 space 1024K, 100% used [0x0cc00000, 0x0cd00000)
AC 0 S CS TS 1 PTAMS 0x0cd00000 NTAMS 0x0cd00000 space 1024K, 100% used [0x0cd00000, 0x0ce00000)
AC 0 S CS TS 1 PTAMS 0x0ce00000 NTAMS 0x0ce00000 space 1024K, 100% used [0x0ce00000, 0x0cf00000)
AC 0 S CS TS 1 PTAMS 0x0cf00000 NTAMS 0x0cf00000 space 1024K, 100% used [0x0cf00000, 0x0d000000)
AC 0 S CS TS 1 PTAMS 0x0d000000 NTAMS 0x0d000000 space 1024K, 100% used [0x0d000000, 0x0d100000)
AC 0 S CS TS 1 PTAMS 0x0d100000 NTAMS 0x0d100000 space 1024K, 100% used [0x0d100000, 0x0d200000)
AC 0 S CS TS 1 PTAMS 0x0d200000 NTAMS 0x0d200000 space 1024K, 100% used [0x0d200000, 0x0d300000)
AC 0 S CS TS 1 PTAMS 0x0d300000 NTAMS 0x0d300000 space 1024K, 100% used [0x0d300000, 0x0d400000)
AC 0 S CS TS 1 PTAMS 0x0d400000 NTAMS 0x0d400000 space 1024K, 100% used [0x0d400000, 0x0d500000)
AC 0 S CS TS 1 PTAMS 0x0d500000 NTAMS 0x0d500000 space 1024K, 100% used [0x0d500000, 0x0d600000)
AC 0 S CS TS 1 PTAMS 0x0d600000 NTAMS 0x0d600000 space 1024K, 100% used [0x0d600000, 0x0d700000)
AC 0 S CS TS 1 PTAMS 0x0d700000 NTAMS 0x0d700000 space 1024K, 100% used [0x0d700000, 0x0d800000)
AC 0 S CS TS 1 PTAMS 0x0d800000 NTAMS 0x0d800000 space 1024K, 100% used [0x0d800000, 0x0d900000)
AC 0 S CS TS 1 PTAMS 0x0d900000 NTAMS 0x0d900000 space 1024K, 100% used [0x0d900000, 0x0da00000)
AC 0 S CS TS 1 PTAMS 0x0da00000 NTAMS 0x0da00000 space 1024K, 100% used [0x0da00000, 0x0db00000)
AC 0 F TS 0 PTAMS 0x0db00000 NTAMS 0x0db00000 space 1024K, 0% used [0x0db00000, 0x0dc00000)
AC 0 F TS 0 PTAMS 0x0dc00000 NTAMS 0x0dc00000 space 1024K, 0% used [0x0dc00000, 0x0dd00000)
AC 0 F TS 0 PTAMS 0x0dd00000 NTAMS 0x0dd00000 space 1024K, 0% used [0x0dd00000, 0x0de00000)
AC 0 F TS 0 PTAMS 0x0de00000 NTAMS 0x0de00000 space 1024K, 0% used [0x0de00000, 0x0df00000)
AC 0 F TS 0 PTAMS 0x0df00000 NTAMS 0x0df00000 space 1024K, 0% used [0x0df00000, 0x0e000000)
AC 0 F TS 0 PTAMS 0x0e000000 NTAMS 0x0e000000 space 1024K, 0% used [0x0e000000, 0x0e100000)
AC 0 F TS 0 PTAMS 0x0e100000 NTAMS 0x0e100000 space 1024K, 0% used [0x0e100000, 0x0e200000)
AC 0 F TS 0 PTAMS 0x0e200000 NTAMS 0x0e200000 space 1024K, 0% used [0x0e200000, 0x0e300000)
AC 0 F TS 0 PTAMS 0x0e300000 NTAMS 0x0e300000 space 1024K, 0% used [0x0e300000, 0x0e400000)
AC 0 F TS 0 PTAMS 0x0e400000 NTAMS 0x0e400000 space 1024K, 0% used [0x0e400000, 0x0e500000)
AC 0 F TS 0 PTAMS 0x0e500000 NTAMS 0x0e500000 space 1024K, 0% used [0x0e500000, 0x0e600000)
AC 0 F TS 0 PTAMS 0x0e600000 NTAMS 0x0e600000 space 1024K, 0% used [0x0e600000, 0x0e700000)
AC 0 F TS 0 PTAMS 0x0e700000 NTAMS 0x0e700000 space 1024K, 0% used [0x0e700000, 0x0e800000)
AC 0 F TS 0 PTAMS 0x0e800000 NTAMS 0x0e800000 space 1024K, 0% used [0x0e800000, 0x0e900000)
AC 0 F TS 0 PTAMS 0x0e900000 NTAMS 0x0e900000 space 1024K, 0% used [0x0e900000, 0x0ea00000)
AC 0 F TS 0 PTAMS 0x0ea00000 NTAMS 0x0ea00000 space 1024K, 0% used [0x0ea00000, 0x0eb00000)
AC 0 F TS 0 PTAMS 0x0eb00000 NTAMS 0x0eb00000 space 1024K, 0% used [0x0eb00000, 0x0ec00000)
AC 0 F TS 0 PTAMS 0x0ec00000 NTAMS 0x0ec00000 space 1024K, 0% used [0x0ec00000, 0x0ed00000)
AC 0 F TS 0 PTAMS 0x0ed00000 NTAMS 0x0ed00000 space 1024K, 0% used [0x0ed00000, 0x0ee00000)
AC 0 F TS 0 PTAMS 0x0ee00000 NTAMS 0x0ee00000 space 1024K, 0% used [0x0ee00000, 0x0ef00000)
AC 0 F TS 0 PTAMS 0x0ef00000 NTAMS 0x0ef00000 space 1024K, 0% used [0x0ef00000, 0x0f000000)
AC 0 F TS 0 PTAMS 0x0f000000 NTAMS 0x0f000000 space 1024K, 0% used [0x0f000000, 0x0f100000)
AC 0 F TS 0 PTAMS 0x0f100000 NTAMS 0x0f100000 space 1024K, 0% used [0x0f100000, 0x0f200000)
AC 0 F TS 0 PTAMS 0x0f200000 NTAMS 0x0f200000 space 1024K, 0% used [0x0f200000, 0x0f300000)
AC 0 F TS 0 PTAMS 0x0f300000 NTAMS 0x0f300000 space 1024K, 0% used [0x0f300000, 0x0f400000)
AC 0 F TS 0 PTAMS 0x0f400000 NTAMS 0x0f400000 space 1024K, 0% used [0x0f400000, 0x0f500000)
AC 0 F TS 0 PTAMS 0x0f500000 NTAMS 0x0f500000 space 1024K, 0% used [0x0f500000, 0x0f600000)
AC 0 F TS 0 PTAMS 0x0f600000 NTAMS 0x0f600000 space 1024K, 0% used [0x0f600000, 0x0f700000)
AC 0 F TS 0 PTAMS 0x0f700000 NTAMS 0x0f700000 space 1024K, 0% used [0x0f700000, 0x0f800000)
AC 0 F TS 0 PTAMS 0x0f800000 NTAMS 0x0f800000 space 1024K, 0% used [0x0f800000, 0x0f900000)
AC 0 F TS 0 PTAMS 0x0f900000 NTAMS 0x0f900000 space 1024K, 0% used [0x0f900000, 0x0fa00000)
AC 0 F TS 0 PTAMS 0x0fa00000 NTAMS 0x0fa00000 space 1024K, 0% used [0x0fa00000, 0x0fb00000)
AC 0 F TS 0 PTAMS 0x0fb00000 NTAMS 0x0fb00000 space 1024K, 0% used [0x0fb00000, 0x0fc00000)
AC 0 F TS 0 PTAMS 0x0fc00000 NTAMS 0x0fc00000 space 1024K, 0% used [0x0fc00000, 0x0fd00000)
AC 0 F TS 0 PTAMS 0x0fd00000 NTAMS 0x0fd00000 space 1024K, 0% used [0x0fd00000, 0x0fe00000)
AC 0 F TS 0 PTAMS 0x0fe00000 NTAMS 0x0fe00000 space 1024K, 0% used [0x0fe00000, 0x0ff00000)
AC 0 F TS 0 PTAMS 0x0ff00000 NTAMS 0x0ff00000 space 1024K, 0% used [0x0ff00000, 0x10000000)
AC 0 F TS 0 PTAMS 0x10000000 NTAMS 0x10000000 space 1024K, 0% used [0x10000000, 0x10100000)
AC 0 F TS 0 PTAMS 0x10100000 NTAMS 0x10100000 space 1024K, 0% used [0x10100000, 0x10200000)
AC 0 F TS 0 PTAMS 0x10200000 NTAMS 0x10200000 space 1024K, 0% used [0x10200000, 0x10300000)
AC 0 F TS 0 PTAMS 0x10300000 NTAMS 0x10300000 space 1024K, 0% used [0x10300000, 0x10400000)
AC 0 F TS 0 PTAMS 0x10400000 NTAMS 0x10400000 space 1024K, 0% used [0x10400000, 0x10500000)
AC 0 F TS 0 PTAMS 0x10500000 NTAMS 0x10500000 space 1024K, 0% used [0x10500000, 0x10600000)
AC 0 F TS 0 PTAMS 0x10600000 NTAMS 0x10600000 space 1024K, 0% used [0x10600000, 0x10700000)
AC 0 F TS 0 PTAMS 0x10700000 NTAMS 0x10700000 space 1024K, 0% used [0x10700000, 0x10800000)
AC 0 F TS 0 PTAMS 0x10800000 NTAMS 0x10800000 space 1024K, 0% used [0x10800000, 0x10900000)
AC 0 F TS 0 PTAMS 0x10900000 NTAMS 0x10900000 space 1024K, 0% used [0x10900000, 0x10a00000)
AC 0 F TS 0 PTAMS 0x10a00000 NTAMS 0x10a00000 space 1024K, 0% used [0x10a00000, 0x10b00000)
AC 0 F TS 0 PTAMS 0x10b00000 NTAMS 0x10b00000 space 1024K, 0% used [0x10b00000, 0x10c00000)
AC 0 F TS 0 PTAMS 0x10c00000 NTAMS 0x10c00000 space 1024K, 0% used [0x10c00000, 0x10d00000)
AC 0 F TS 0 PTAMS 0x10d00000 NTAMS 0x10d00000 space 1024K, 0% used [0x10d00000, 0x10e00000)
AC 0 F TS 0 PTAMS 0x10e00000 NTAMS 0x10e00000 space 1024K, 0% used [0x10e00000, 0x10f00000)
AC 0 F TS 0 PTAMS 0x10f00000 NTAMS 0x10f00000 space 1024K, 0% used [0x10f00000, 0x11000000)
AC 0 F TS 0 PTAMS 0x11000000 NTAMS 0x11000000 space 1024K, 0% used [0x11000000, 0x11100000)
AC 0 F TS 0 PTAMS 0x11100000 NTAMS 0x11100000 space 1024K, 0% used [0x11100000, 0x11200000)
AC 0 F TS 0 PTAMS 0x11200000 NTAMS 0x11200000 space 1024K, 0% used [0x11200000, 0x11300000)
AC 0 F TS 0 PTAMS 0x11300000 NTAMS 0x11300000 space 1024K, 0% used [0x11300000, 0x11400000)
AC 0 F TS 0 PTAMS 0x11400000 NTAMS 0x11400000 space 1024K, 0% used [0x11400000, 0x11500000)
AC 0 F TS 0 PTAMS 0x11500000 NTAMS 0x11500000 space 1024K, 0% used [0x11500000, 0x11600000)
AC 0 F TS 0 PTAMS 0x11600000 NTAMS 0x11600000 space 1024K, 0% used [0x11600000, 0x11700000)
AC 0 F TS 0 PTAMS 0x11700000 NTAMS 0x11700000 space 1024K, 0% used [0x11700000, 0x11800000)
AC 0 F TS 0 PTAMS 0x11800000 NTAMS 0x11800000 space 1024K, 0% used [0x11800000, 0x11900000)
AC 0 F TS 0 PTAMS 0x11900000 NTAMS 0x11900000 space 1024K, 0% used [0x11900000, 0x11a00000)
AC 0 F TS 0 PTAMS 0x11a00000 NTAMS 0x11a00000 space 1024K, 0% used [0x11a00000, 0x11b00000)
AC 0 F TS 0 PTAMS 0x11b00000 NTAMS 0x11b00000 space 1024K, 0% used [0x11b00000, 0x11c00000)
AC 0 F TS 0 PTAMS 0x11c00000 NTAMS 0x11c00000 space 1024K, 0% used [0x11c00000, 0x11d00000)
AC 0 F TS 0 PTAMS 0x11d00000 NTAMS 0x11d00000 space 1024K, 0% used [0x11d00000, 0x11e00000)
AC 0 F TS 0 PTAMS 0x11e00000 NTAMS 0x11e00000 space 1024K, 0% used [0x11e00000, 0x11f00000)
AC 0 F TS 0 PTAMS 0x11f00000 NTAMS 0x11f00000 space 1024K, 0% used [0x11f00000, 0x12000000)
AC 0 F TS 0 PTAMS 0x12000000 NTAMS 0x12000000 space 1024K, 0% used [0x12000000, 0x12100000)
AC 0 F TS 0 PTAMS 0x12100000 NTAMS 0x12100000 space 1024K, 0% used [0x12100000, 0x12200000)
AC 0 F TS 0 PTAMS 0x12200000 NTAMS 0x12200000 space 1024K, 0% used [0x12200000, 0x12300000)
AC 0 F TS 0 PTAMS 0x12300000 NTAMS 0x12300000 space 1024K, 0% used [0x12300000, 0x12400000)
AC 0 F TS 0 PTAMS 0x12400000 NTAMS 0x12400000 space 1024K, 0% used [0x12400000, 0x12500000)
AC 0 F TS 0 PTAMS 0x12500000 NTAMS 0x12500000 space 1024K, 0% used [0x12500000, 0x12600000)
AC 0 F TS 0 PTAMS 0x12600000 NTAMS 0x12600000 space 1024K, 0% used [0x12600000, 0x12700000)
AC 0 F TS 0 PTAMS 0x12700000 NTAMS 0x12700000 space 1024K, 0% used [0x12700000, 0x12800000)
AC 0 F TS 0 PTAMS 0x12800000 NTAMS 0x12800000 space 1024K, 0% used [0x12800000, 0x12900000)
AC 0 F TS 0 PTAMS 0x12900000 NTAMS 0x12900000 space 1024K, 0% used [0x12900000, 0x12a00000)
AC 0 F TS 0 PTAMS 0x12a00000 NTAMS 0x12a00000 space 1024K, 0% used [0x12a00000, 0x12b00000)
AC 0 F TS 0 PTAMS 0x12b00000 NTAMS 0x12b00000 space 1024K, 0% used [0x12b00000, 0x12c00000)
AC 0 F TS 0 PTAMS 0x12c00000 NTAMS 0x12c00000 space 1024K, 0% used [0x12c00000, 0x12d00000)
AC 0 F TS 0 PTAMS 0x12d00000 NTAMS 0x12d00000 space 1024K, 0% used [0x12d00000, 0x12e00000)
AC 0 F TS 0 PTAMS 0x12e00000 NTAMS 0x12e00000 space 1024K, 0% used [0x12e00000, 0x12f00000)
AC 0 F TS 0 PTAMS 0x12f00000 NTAMS 0x12f00000 space 1024K, 0% used [0x12f00000, 0x13000000)
AC 0 F TS 0 PTAMS 0x13000000 NTAMS 0x13000000 space 1024K, 0% used [0x13000000, 0x13100000)
AC 0 F TS 0 PTAMS 0x13100000 NTAMS 0x13100000 space 1024K, 0% used [0x13100000, 0x13200000)
AC 0 F TS 0 PTAMS 0x13200000 NTAMS 0x13200000 space 1024K, 0% used [0x13200000, 0x13300000)
AC 0 F TS 0 PTAMS 0x13300000 NTAMS 0x13300000 space 1024K, 0% used [0x13300000, 0x13400000)
AC 0 F TS 0 PTAMS 0x13400000 NTAMS 0x13400000 space 1024K, 0% used [0x13400000, 0x13500000)
AC 0 F TS 0 PTAMS 0x13500000 NTAMS 0x13500000 space 1024K, 0% used [0x13500000, 0x13600000)
AC 0 F TS 0 PTAMS 0x13600000 NTAMS 0x13600000 space 1024K, 0% used [0x13600000, 0x13700000)
AC 0 F TS 0 PTAMS 0x13700000 NTAMS 0x13700000 space 1024K, 0% used [0x13700000, 0x13800000)
AC 0 F TS 0 PTAMS 0x13800000 NTAMS 0x13800000 space 1024K, 0% used [0x13800000, 0x13900000)
AC 0 F TS 0 PTAMS 0x13900000 NTAMS 0x13900000 space 1024K, 0% used [0x13900000, 0x13a00000)
AC 0 F TS 0 PTAMS 0x13a00000 NTAMS 0x13a00000 space 1024K, 0% used [0x13a00000, 0x13b00000)
AC 0 F TS 0 PTAMS 0x13b00000 NTAMS 0x13b00000 space 1024K, 0% used [0x13b00000, 0x13c00000)
AC 0 F TS 0 PTAMS 0x13c00000 NTAMS 0x13c00000 space 1024K, 0% used [0x13c00000, 0x13d00000)
AC 0 F TS 0 PTAMS 0x13d00000 NTAMS 0x13d00000 space 1024K, 0% used [0x13d00000, 0x13e00000)
AC 0 F TS 0 PTAMS 0x13e00000 NTAMS 0x13e00000 space 1024K, 0% used [0x13e00000, 0x13f00000)
AC 0 F TS 0 PTAMS 0x13f00000 NTAMS 0x13f00000 space 1024K, 0% used [0x13f00000, 0x14000000)
AC 0 E TS 0 PTAMS 0x14000000 NTAMS 0x14000000 space 1024K, 68% used [0x14000000, 0x14100000)
AC 0 E CS TS 0 PTAMS 0x14100000 NTAMS 0x14100000 space 1024K, 100% used [0x14100000, 0x14200000)
AC 0 E CS TS 0 PTAMS 0x14200000 NTAMS 0x14200000 space 1024K, 100% used [0x14200000, 0x14300000)
AC 0 E CS TS 0 PTAMS 0x14300000 NTAMS 0x14300000 space 1024K, 100% used [0x14300000, 0x14400000)
AC 0 E CS TS 0 PTAMS 0x14400000 NTAMS 0x14400000 space 1024K, 100% used [0x14400000, 0x14500000)
AC 0 E CS TS 0 PTAMS 0x14500000 NTAMS 0x14500000 space 1024K, 100% used [0x14500000, 0x14600000)
AC 0 E CS TS 0 PTAMS 0x14600000 NTAMS 0x14600000 space 1024K, 100% used [0x14600000, 0x14700000)
AC 0 E CS TS 0 PTAMS 0x14700000 NTAMS 0x14700000 space 1024K, 100% used [0x14700000, 0x14800000)
AC 0 E CS TS 0 PTAMS 0x14800000 NTAMS 0x14800000 space 1024K, 100% used [0x14800000, 0x14900000)
AC 0 E CS TS 0 PTAMS 0x14900000 NTAMS 0x14900000 space 1024K, 100% used [0x14900000, 0x14a00000)
AC 0 E CS TS 0 PTAMS 0x14a00000 NTAMS 0x14a00000 space 1024K, 100% used [0x14a00000, 0x14b00000)
AC 0 E CS TS 0 PTAMS 0x14b00000 NTAMS 0x14b00000 space 1024K, 100% used [0x14b00000, 0x14c00000)
AC 0 E CS TS 0 PTAMS 0x14c00000 NTAMS 0x14c00000 space 1024K, 100% used [0x14c00000, 0x14d00000)
AC 0 E CS TS 0 PTAMS 0x14d00000 NTAMS 0x14d00000 space 1024K, 100% used [0x14d00000, 0x14e00000)
AC 0 E CS TS 0 PTAMS 0x14e00000 NTAMS 0x14e00000 space 1024K, 100% used [0x14e00000, 0x14f00000)
AC 0 E CS TS 0 PTAMS 0x14f00000 NTAMS 0x14f00000 space 1024K, 100% used [0x14f00000, 0x15000000)
AC 0 E CS TS 0 PTAMS 0x15000000 NTAMS 0x15000000 space 1024K, 100% used [0x15000000, 0x15100000)
AC 0 E CS TS 0 PTAMS 0x15100000 NTAMS 0x15100000 space 1024K, 100% used [0x15100000, 0x15200000)
AC 0 E CS TS 0 PTAMS 0x15200000 NTAMS 0x15200000 space 1024K, 100% used [0x15200000, 0x15300000)
AC 0 E CS TS 0 PTAMS 0x15300000 NTAMS 0x15300000 space 1024K, 100% used [0x15300000, 0x15400000)
AC 0 E CS TS 0 PTAMS 0x15400000 NTAMS 0x15400000 space 1024K, 100% used [0x15400000, 0x15500000)
AC 0 E CS TS 0 PTAMS 0x15500000 NTAMS 0x15500000 space 1024K, 100% used [0x15500000, 0x15600000)
AC 0 E CS TS 0 PTAMS 0x15600000 NTAMS 0x15600000 space 1024K, 100% used [0x15600000, 0x15700000)
AC 0 E CS TS 0 PTAMS 0x15700000 NTAMS 0x15700000 space 1024K, 100% used [0x15700000, 0x15800000)
AC 0 E CS TS 0 PTAMS 0x15800000 NTAMS 0x15800000 space 1024K, 100% used [0x15800000, 0x15900000)
AC 0 E CS TS 0 PTAMS 0x15900000 NTAMS 0x15900000 space 1024K, 100% used [0x15900000, 0x15a00000)
AC 0 E CS TS 0 PTAMS 0x15a00000 NTAMS 0x15a00000 space 1024K, 100% used [0x15a00000, 0x15b00000)
AC 0 E CS TS 0 PTAMS 0x15b00000 NTAMS 0x15b00000 space 1024K, 100% used [0x15b00000, 0x15c00000)
AC 0 O TS 0 PTAMS 0x15d00000 NTAMS 0x15d00000 space 1024K, 100% used [0x15c00000, 0x15d00000)
AC 0 O TS 0 PTAMS 0x15e00000 NTAMS 0x15e00000 space 1024K, 100% used [0x15d00000, 0x15e00000)
AC 0 O TS 0 PTAMS 0x15f00000 NTAMS 0x15f00000 space 1024K, 100% used [0x15e00000, 0x15f00000)
AC 0 E CS TS 0 PTAMS 0x15f00000 NTAMS 0x15f00000 space 1024K, 100% used [0x15f00000, 0x16000000)
AC 0 E CS TS 0 PTAMS 0x16000000 NTAMS 0x16000000 space 1024K, 100% used [0x16000000, 0x16100000)
AC 0 E CS TS 0 PTAMS 0x16100000 NTAMS 0x16100000 space 1024K, 100% used [0x16100000, 0x16200000)
AC 0 E CS TS 0 PTAMS 0x16200000 NTAMS 0x16200000 space 1024K, 100% used [0x16200000, 0x16300000)
AC 0 O TS 0 PTAMS 0x16400000 NTAMS 0x16400000 space 1024K, 100% used [0x16300000, 0x16400000)

Card table byte_map: [0x45800000,0x45a00000] byte_map_base: 0x457d6000

Marking Bits (Prev, Next): (CMBitMap*) 0x025e5888, (CMBitMap*) 0x025e58b4
Prev Bits: [0x45c00000, 0x46c00000)
Next Bits: [0x46c00000, 0x47c00000)

Polling page: 0x005c0000

CodeCache: size=32768Kb used=8482Kb max_used=8591Kb free=24285Kb
bounds [0x026e0000, 0x02f48000, 0x046e0000]
total_blobs=4296 nmethods=4046 adapters=179
compilation: enabled

Compilation events (10 events):
Event: 11.026 Thread 0x4853cc00 nmethod 5635 0x02890b88 code [0x02890ca0, 0x02890dcc]
Event: 11.026 Thread 0x4853cc00 5636 org.eclipse.oomph.setup.impl.VariableTaskImpl::eStaticClass (4 bytes)
Event: 11.026 Thread 0x4853cc00 nmethod 5636 0x028909c8 code [0x02890ac0, 0x02890b40]
Event: 11.026 Thread 0x4853cc00 5637 org.eclipse.emf.ecore.impl.MinimalEObjectImpl::eSettings (36 bytes)
Event: 11.027 Thread 0x4853cc00 nmethod 5637 0x02890248 code [0x028903b0, 0x028906c8]
Event: 11.027 Thread 0x4853cc00 5638 org.eclipse.emf.ecore.impl.MinimalEObjectImpl::eHasSettings (7 bytes)
Event: 11.027 Thread 0x4853cc00 nmethod 5638 0x02890048 code [0x02890140, 0x028901e0]
Event: 11.027 Thread 0x4853cc00 5639 org.eclipse.core.runtime.jobs.Job::getJobGroup (5 bytes)
Event: 11.027 Thread 0x4853cc00 nmethod 5639 0x0288fe88 code [0x0288ff80, 0x02890000]
Event: 11.027 Thread 0x4853cc00 5640 org.eclipse.emf.ecore.xmi.impl.XMLHelperImpl$NamespaceSupport::declarePrefix (127 bytes)

GC Heap History (10 events):
Event: 8.553 GC heap before
{Heap before GC invocations=10 (full 0):
garbage-first heap total 262144K, used 187641K [0x05400000, 0x05500400, 0x45400000)
region size 1024K, 153 young (156672K), 20 survivors (20480K)
Metaspace used 48593K, capacity 51947K, committed 51968K, reserved 52608K
Event: 8.594 GC heap after
Heap after GC invocations=11 (full 0):
garbage-first heap total 262144K, used 81920K [0x05400000, 0x05500400, 0x45400000)
region size 1024K, 20 young (20480K), 20 survivors (20480K)
Metaspace used 48593K, capacity 51947K, committed 51968K, reserved 52608K
}
Event: 9.238 GC heap before
{Heap before GC invocations=11 (full 0):
garbage-first heap total 262144K, used 228275K [0x05400000, 0x05500400, 0x45400000)
region size 1024K, 148 young (151552K), 20 survivors (20480K)
Metaspace used 54610K, capacity 58422K, committed 58496K, reserved 58752K
Event: 9.271 GC heap after
Heap after GC invocations=12 (full 0):
garbage-first heap total 278528K, used 103912K [0x05400000, 0x05500440, 0x45400000)
region size 1024K, 19 young (19456K), 19 survivors (19456K)
Metaspace used 54610K, capacity 58422K, committed 58496K, reserved 58752K
}
Event: 9.693 GC heap before
{Heap before GC invocations=12 (full 0):
garbage-first heap total 278528K, used 226792K [0x05400000, 0x05500440, 0x45400000)
region size 1024K, 139 young (142336K), 19 survivors (19456K)
Metaspace used 55693K, capacity 59724K, committed 59776K, reserved 59776K
Event: 9.712 GC heap after
Heap after GC invocations=13 (full 0):
garbage-first heap total 278528K, used 107007K [0x05400000, 0x05500440, 0x45400000)
region size 1024K, 9 young (9216K), 9 survivors (9216K)
Metaspace used 55693K, capacity 59724K, committed 59776K, reserved 59776K
}
Event: 10.015 GC heap before
{Heap before GC invocations=13 (full 0):
garbage-first heap total 278528K, used 217599K [0x05400000, 0x05500440, 0x45400000)
region size 1024K, 118 young (120832K), 9 survivors (9216K)
Metaspace used 56960K, capacity 61204K, committed 61228K, reserved 61824K
Event: 10.030 GC heap after
Heap after GC invocations=14 (full 0):
garbage-first heap total 278528K, used 110591K [0x05400000, 0x05500440, 0x45400000)
region size 1024K, 12 young (12288K), 12 survivors (12288K)
Metaspace used 56960K, capacity 61204K, committed 61228K, reserved 61824K
}
Event: 11.027 GC heap before
{Heap before GC invocations=15 (full 0):
garbage-first heap total 278528K, used 210567K [0x05400000, 0x05500440, 0x45400000)
region size 1024K, 133 young (136192K), 12 survivors (12288K)
Metaspace used 59329K, capacity 63736K, committed 63744K, reserved 63872K
Event: 11.056 GC heap after
Heap after GC invocations=16 (full 0):
garbage-first heap total 278528K, used 102244K [0x05400000, 0x05500440, 0x45400000)
region size 1024K, 17 young (17408K), 17 survivors (17408K)
Metaspace used 59329K, capacity 63736K, committed 63744K, reserved 63872K
}

Deoptimization events (0 events):
No events

Classes redefined (0 events):
No events

Internal exceptions (10 events):
Event: 9.527 Thread 0x4d8c4800 Exception <a 'java/io/FileNotFoundException'> (0x106854c8) thrown at [C:\workspace\8-2-build-windows-i586-cygwin\jdk8u181\11358\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 9.934 Thread 0x4e32a000 Exception <a 'java/net/ConnectException': Connection refused: connect> (0x10680850) thrown at [C:\workspace\8-2-build-windows-i586-cygwin\jdk8u181\11358\hotspot\src\share\vm\prims\jni.cpp, line 735]
Event: 9.945 Thread 0x4d8c2400 Exception <a 'java/lang/NoClassDefFoundError': org/eclipse/userstorage/oauth/OAuthParameters> (0x1049e520) thrown at [C:\workspace\8-2-build-windows-i586-cygwin\jdk8u181\11358\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 199]
Event: 10.064 Thread 0x4d8c2400 Exception <a 'java/lang/reflect/InvocationTargetException'> (0x15395610) thrown at [C:\workspace\8-2-build-windows-i586-cygwin\jdk8u181\11358\hotspot\src\share\vm\runtime\reflection.cpp, line 1092]
Event: 10.471 Thread 0x026de000 Implicit null exception at 0x02d2a6f3 to 0x02d2af08
Event: 10.835 Thread 0x4d8c2400 Exception <a 'java/lang/reflect/InvocationTargetException'> (0x1625fda0) thrown at [C:\workspace\8-2-build-windows-i586-cygwin\jdk8u181\11358\hotspot\src\share\vm\runtime\reflection.cpp, line 1092]
Event: 10.895 Thread 0x4d8c4800 Exception <a 'java/lang/reflect/InvocationTargetException'> (0x10d94300) thrown at [C:\workspace\8-2-build-windows-i586-cygwin\jdk8u181\11358\hotspot\src\share\vm\runtime\reflection.cpp, line 1092]
Event: 10.964 Thread 0x4d8c3000 Exception <a 'java/lang/reflect/InvocationTargetException'> (0x12c85898) thrown at [C:\workspace\8-2-build-windows-i586-cygwin\jdk8u181\11358\hotspot\src\share\vm\runtime\reflection.cpp, line 1092]
Event: 10.964 Thread 0x4d8c1c00 Exception <a 'java/lang/reflect/InvocationTargetException'> (0x0f98faa8) thrown at [C:\workspace\8-2-build-windows-i586-cygwin\jdk8u181\11358\hotspot\src\share\vm\runtime\reflection.cpp, line 1092]
Event: 10.999 Thread 0x4d8c4800 Implicit null exception at 0x02b8f704 to 0x02b8f7c2

Events (10 events):
Event: 10.998 Thread 0x4853cc00 flushing nmethod 0x02a83208
Event: 10.998 Thread 0x4853cc00 flushing nmethod 0x02a837c8
Event: 10.998 Thread 0x4853cc00 flushing nmethod 0x02a84048
Event: 10.998 Thread 0x4853cc00 flushing nmethod 0x02a84388
Event: 10.998 Thread 0x4853cc00 flushing nmethod 0x02a84588
Event: 10.998 Thread 0x4853cc00 flushing nmethod 0x02a84a08
Event: 10.999 Thread 0x4d8c4800 DEOPT PACKING pc=0x02b8f7c7 sp=0x5512f310
Event: 10.999 Thread 0x4d8c4800 DEOPT UNPACKING pc=0x0271c5e5 sp=0x5512f1ac mode 3
Event: 11.027 Executing VM operation: G1IncCollectionPause
Event: 11.056 Executing VM operation: G1IncCollectionPause done


Dynamic libraries:
0x00400000 - 0x0044e000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\e2studio.exe
0x77de0000 - 0x77f7c000 C:\Windows\SYSTEM32\ntdll.dll
0x77680000 - 0x77760000 C:\Windows\System32\KERNEL32.DLL
0x778f0000 - 0x77ae9000 C:\Windows\System32\KERNELBASE.dll
0x75850000 - 0x759e9000 C:\Windows\System32\USER32.dll
0x77b50000 - 0x77b67000 C:\Windows\System32\win32u.dll
0x76940000 - 0x76963000 C:\Windows\System32\GDI32.dll
0x75610000 - 0x75776000 C:\Windows\System32\gdi32full.dll
0x75780000 - 0x75800000 C:\Windows\System32\msvcp_win.dll
0x754e0000 - 0x75603000 C:\Windows\System32\ucrtbase.dll
0x77760000 - 0x77820000 C:\Windows\System32\MSVCRT.dll
0x75230000 - 0x7543f000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.17763.107_none_4d636f5b1b9a8e74\COMCTL32.dll
0x772e0000 - 0x7755e000 C:\Windows\System32\combase.dll
0x77820000 - 0x778df000 C:\Windows\System32\RPCRT4.dll
0x75450000 - 0x75470000 C:\Windows\System32\SspiCli.dll
0x75440000 - 0x7544a000 C:\Windows\System32\CRYPTBASE.dll
0x77050000 - 0x770b2000 C:\Windows\System32\bcryptPrimitives.dll
0x76610000 - 0x76689000 C:\Windows\System32\sechost.dll
0x77020000 - 0x77045000 C:\Windows\System32\IMM32.DLL
0x72000000 - 0x7200d000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.1.551.v20171108-1834\eclipse_1630.dll
0x770c0000 - 0x7713e000 C:\Windows\System32\ADVAPI32.dll
0x75220000 - 0x75228000 C:\Windows\SYSTEM32\VERSION.dll
0x74e40000 - 0x75213000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\features\com.renesas.jre.win32.win32.x86_1.8.0.181\jre\bin\client\jvm.dll
0x77dc0000 - 0x77dc6000 C:\Windows\System32\PSAPI.DLL
0x74e00000 - 0x74e24000 C:\Windows\SYSTEM32\WINMM.dll
0x74e30000 - 0x74e38000 C:\Windows\SYSTEM32\WSOCK32.dll
0x74d40000 - 0x74dff000 C:\Windows\SYSTEM32\MSVCR100.dll
0x76970000 - 0x769cf000 C:\Windows\System32\WS2_32.dll
0x74d10000 - 0x74d33000 C:\Windows\SYSTEM32\WINMMBASE.dll
0x76f40000 - 0x76f7b000 C:\Windows\System32\cfgmgr32.dll
0x74d00000 - 0x74d0c000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\features\com.renesas.jre.win32.win32.x86_1.8.0.181\jre\bin\verify.dll
0x74cd0000 - 0x74cf2000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\features\com.renesas.jre.win32.win32.x86_1.8.0.181\jre\bin\java.dll
0x74cb0000 - 0x74cc4000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\features\com.renesas.jre.win32.win32.x86_1.8.0.181\jre\bin\zip.dll
0x769f0000 - 0x76f3d000 C:\Windows\System32\SHELL32.dll
0x77d30000 - 0x77db9000 C:\Windows\System32\shcore.dll
0x75b80000 - 0x7617a000 C:\Windows\System32\windows.storage.dll
0x769d0000 - 0x769ec000 C:\Windows\System32\profapi.dll
0x77140000 - 0x77194000 C:\Windows\System32\powrprof.dll
0x768f0000 - 0x76934000 C:\Windows\System32\shlwapi.dll
0x77670000 - 0x7767f000 C:\Windows\System32\kernel.appcore.dll
0x77d10000 - 0x77d22000 C:\Windows\System32\cryptsp.dll
0x743f0000 - 0x7441f000 C:\Windows\system32\rsaenh.dll
0x765f0000 - 0x76609000 C:\Windows\System32\bcrypt.dll
0x74670000 - 0x74693000 C:\Windows\SYSTEM32\USERENV.dll
0x74c90000 - 0x74ca5000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\features\com.renesas.jre.win32.win32.x86_1.8.0.181\jre\bin\net.dll
0x74050000 - 0x740a2000 C:\Windows\system32\mswsock.dll
0x74420000 - 0x74453000 C:\Windows\SYSTEM32\IPHLPAPI.DLL
0x77660000 - 0x77667000 C:\Windows\System32\NSI.dll
0x74030000 - 0x74043000 C:\Windows\SYSTEM32\dhcpcsvc6.DLL
0x742b0000 - 0x742c4000 C:\Windows\SYSTEM32\dhcpcsvc.DLL
0x73fa0000 - 0x74030000 C:\Windows\SYSTEM32\DNSAPI.dll
0x74c80000 - 0x74c8f000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\features\com.renesas.jre.win32.win32.x86_1.8.0.181\jre\bin\nio.dll
0x74bb0000 - 0x74c2b000 C:\Windows\system32\uxtheme.dll
0x771a0000 - 0x772dd000 C:\Windows\System32\MSCTF.dll
0x76f80000 - 0x7701b000 C:\Windows\System32\OLEAUT32.dll
0x74b20000 - 0x74ba6000 C:\Windows\System32\TextInputFramework.dll
0x748b0000 - 0x74b1a000 C:\Windows\System32\CoreUIComponents.dll
0x74820000 - 0x748af000 C:\Windows\System32\CoreMessaging.dll
0x70b70000 - 0x70b99000 C:\Windows\SYSTEM32\ntmarta.dll
0x70690000 - 0x7076b000 C:\Windows\SYSTEM32\wintypes.dll
0x747f0000 - 0x74816000 C:\Windows\system32\dwmapi.dll
0x77b70000 - 0x77d09000 C:\Windows\System32\CRYPT32.dll
0x754d0000 - 0x754de000 C:\Windows\System32\MSASN1.dll
0x4bab0000 - 0x4bb1e000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\configuration\org.eclipse.osgi\777\0\.cp\swt-win32-4763.dll
0x77560000 - 0x7765b000 C:\Windows\System32\ole32.dll
0x759f0000 - 0x75aea000 C:\Windows\System32\comdlg32.dll
0x74780000 - 0x747eb000 C:\Windows\SYSTEM32\WINSPOOL.DRV
0x74c60000 - 0x74c77000 C:\Windows\SYSTEM32\USP10.dll
0x73b70000 - 0x73f93000 C:\Windows\SYSTEM32\WININET.dll
0x744f0000 - 0x7466e000 C:\Windows\SYSTEM32\PROPSYS.dll
0x75af0000 - 0x75b71000 C:\Windows\System32\clbcatq.dll
0x740d0000 - 0x740db000 C:\Windows\SYSTEM32\LINKINFO.dll
0x4bbb0000 - 0x4bbcd000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\configuration\org.eclipse.osgi\777\0\.cp\swt-gdip-win32-4763.dll
0x74140000 - 0x742af000 C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.17763.107_none_7e4e6240762d0842\gdiplus.dll
0x739f0000 - 0x73b61000 C:\Windows\SYSTEM32\WindowsCodecs.dll
0x74720000 - 0x74774000 C:\Windows\SYSTEM32\oleacc.dll
0x746e0000 - 0x74714000 C:\Windows\system32\mlang.dll
0x4bc10000 - 0x4bc1c000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\configuration\org.eclipse.osgi\394\0\.cp\os\win32\x86\localfile_1_0_0.dll
0x746c0000 - 0x746d7000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\configuration\org.eclipse.osgi\404\0\.cp\os\win32\x86\win32refresh.dll
0x746b0000 - 0x746bf000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\configuration\org.eclipse.osgi\400\0\.cp\jWinHttp-1.0.0.dll
0x74330000 - 0x743ed000 C:\Windows\SYSTEM32\WINHTTP.dll
0x74480000 - 0x744cd000 C:\Windows\system32\dataexchange.dll
0x737c0000 - 0x739e9000 C:\Windows\system32\d3d11.dll
0x73660000 - 0x737bf000 C:\Windows\system32\dcomp.dll
0x735b0000 - 0x73654000 C:\Windows\system32\dxgi.dll
0x72fe0000 - 0x73183000 C:\Windows\system32\twinapi.appcore.dll
0x74460000 - 0x7447e000 C:\Windows\system32\RMCLIENT.dll
0x746a0000 - 0x746a6000 C:\Windows\SYSTEM32\msimg32.dll
0x744d0000 - 0x744f0000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\features\com.renesas.jre.win32.win32.x86_1.8.0.181\jre\bin\sunec.dll
0x72640000 - 0x72a69000 C:\Windows\system32\explorerframe.dll
0x72d40000 - 0x72fd2000 C:\Windows\SYSTEM32\DWrite.dll
0x72a70000 - 0x72a78000 C:\Windows\System32\rasadhlp.dll
0x72360000 - 0x723b1000 C:\Windows\System32\fwpuclnt.dll
0x71170000 - 0x7118b000 C:\Windows\SYSTEM32\CLDAPI.dll
0x71160000 - 0x71168000 C:\Windows\SYSTEM32\FLTLIB.DLL
0x633d0000 - 0x63457000 C:\Windows\System32\Windows.StateRepositoryPS.dll
0x711f0000 - 0x7128c000 C:\Windows\SYSTEM32\apphelp.dll
0x72c90000 - 0x72d39000 C:\Windows\system32\ntshrui.dll
0x742f0000 - 0x7430c000 C:\Windows\system32\srvcli.dll
0x74c30000 - 0x74c3e000 C:\Windows\SYSTEM32\cscapi.dll
0x74c50000 - 0x74c5b000 C:\Windows\system32\netutils.dll
0x74310000 - 0x74323000 C:\Windows\system32\mssprxy.dll
0x76800000 - 0x7685d000 C:\Windows\System32\coml2.dll
0x72510000 - 0x72634000 C:\Windows\system32\NetworkExplorer.dll
0x740b0000 - 0x740c8000 C:\Windows\SYSTEM32\MPR.dll
0x735a0000 - 0x735a9000 C:\Windows\System32\drprov.dll
0x72c40000 - 0x72c83000 C:\Windows\System32\WINSTA.dll
0x73580000 - 0x73592000 C:\Windows\System32\ntlanman.dll
0x72c20000 - 0x72c39000 C:\Windows\System32\davclnt.dll
0x72c10000 - 0x72c1a000 C:\Windows\System32\DAVHLPR.dll
0x72b20000 - 0x72b8f000 C:\Windows\SYSTEM32\policymanager.dll
0x72ab0000 - 0x72b17000 C:\Windows\SYSTEM32\msvcp110_win.dll
0x74130000 - 0x7413a000 C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\features\com.renesas.jre.win32.win32.x86_1.8.0.181\jre\bin\management.dll
0x70e90000 - 0x7101f000 C:\Windows\SYSTEM32\dbghelp.dll

VM Arguments:
jvm_args: -Declipse.p2.max.threads=10 -Dosgi.requiredJavaVersion=1.8 -XX:+UseG1GC -XX:+UseStringDeduplication -Xms256m -Xmx1024m
java_command: <unknown>
java_class_path (initial): C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse\\plugins/org.eclipse.equinox.launcher_1.4.0.v20161219-1356.jar
Launcher Type: generic

Environment Variables:
PATH=C:/Renesas/Synergy/e2studio_v7.5.1_ssp_v1.7.5/eclipse//features/com.renesas.jre.win32.win32.x86_1.8.0.181/jre/bin/client;C:/Renesas/Synergy/e2studio_v7.5.1_ssp_v1.7.5/eclipse//features/com.renesas.jre.win32.win32.x86_1.8.0.181/jre/bin;C:/Renesas/Synergy/e2studio_v7.5.1_ssp_v1.7.5/eclipse//features/com.renesas.jre.win32.win32.x86_1.8.0.181/jre/lib/i386;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Users\agdbio\AppData\Local\Microsoft\WindowsApps;;C:\Renesas\Synergy\e2studio_v7.5.1_ssp_v1.7.5\eclipse;
USERNAME=agdbio
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 11, GenuineIntel

 

--------------- S Y S T E M ---------------

OS: Windows 10.0 , 64 bit Build 17763 (10.0.17763.1)

CPU:total 4 (initial active 4) (4 cores per cpu, 1 threads per core) family 6 model 158 stepping 11, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, tsc, tscinvbit, bmi1, bmi2, adx

Memory: 4k page, physical 8264832k(4276232k free), swap 10230912k(5791660k free)

vm_info: Java HotSpot(TM) Client VM (25.181-b13) for windows-x86 JRE (1.8.0_181-b13), built on Jul 7 2018 03:18:20 by "java_re" with MS VC++ 10.0 (VS2010)

time: Mon Dec 23 12:07:03 2019
elapsed time: 11 seconds (0d 0h 0m 11s)

Improper/overlapping display on a 800*600 display

$
0
0

We have made a custom S7G2 based board, details of which are as follows

uc- R7FS7G2H2A01CBD s7g2, BGA package(224 pins)

Sdram ic- AS4CM16SA 64Mb synchronous DRAM(Please visit the site to view this file)

Display-

Resolution- 800*600, TFT

Interface- RGB 666 interface(18 bits)

The problem is that the display appears repeated /overlapped onto each other, I have done all display settings (Vertical, Horizontal sync signal, RGB format, clock divider etc) according to the datasheet. The datasheets of our sdram, display & a zipped project (to understand the configurator settings) are attached herewith. Also attached is an reference image of how the display is produced.


Can't remove touch panel driver completely

$
0
0

Hi everyone,


I want to transplant my project from SK-S7G2 to custom board which has no lcds, no touch panels, and no leds.

So I tried deleting guix and touch panel.

However, "synergy/ssp_supplemental/touch_drivers" folder is regenerated automatically whenever I build, and e2studio reports build error.

 

I rechecked thread configuration, but it has no touch panel frameworks.
Cleaning project is not helpful.

My environment is

e2studio: Version: 7.5.1
Build Id: R20190813-1458

SSP: 1.7.0


Any help would be greatly appreciated.

Numeric or String Scroll wheell appearance.

$
0
0

Hi,

I'm using GUIX 5.4.2 and e2Studio 6.2.1 (SSP 1.5.0)

My TFT configuration is 480x854 and 565 RGB format. I'm not using "allocate canvas memory" option. When i add "Fade" value to my wheel widget, it is shown on GUIX but not showing on board. My TFT show all wheels as flat. I refer "guix_widget_types" example and applied same configuration but no way. 

Do you have any idea?

Thanks

When i added "Downloader driver", I get "not match" error

$
0
0

Hello all,

 

I need Flashloader so i configured and added flashloader pack 1.3.0 pack in the pack file then i added bootloader driver in thread stack I did not get any error but when i add  Downloader driver.i get this error. 

how can i fix it?

v1.3.3

e2 Version: 5.4.0.023

Device: R7FS7G27H3A01CFC

Thank you

Best Regards

Victor

 

FMI driver are encrypted

$
0
0
Hello,

I am using another compiler in e2studio . Unfortunetally, the FMI driver are encrypted and I couldn't compile it.

Could someone help me ?

"Recipe for target failed" error message

$
0
0

Hi,

This is the first-ever time of using Synergy, so this could be something very obvious.

I am trying to do the following tutorial to try out GUIX -

https://academy.renesas.com/content/CourseWare/3594/story_content/external_files/Lab%20Instructions_STIL10003%20Introduction%20to%20GUIX.pdf

First I followed the steps in the tutorial and got the following errors - 


make: *** [synergy/ssp/src/driver/r_fmi/r_fmi.o] Error 1 guix_bias_project C/C++ Problem
make: *** Waiting for unfinished jobs.... guix_bias_project C/C++ Problem
recipe for target 'synergy/ssp/src/driver/r_fmi/r_fmi.o' failed subdir.mk /guix_bias_project/Debug/synergy/ssp/src/driver/r_fmi line 18 C/C++ Problem

So then I tried the zip file along with the tutorial and it still give me the exact same errors.

This is the mkdir.mk file where the error occurs - 

 

################################################################################
# Automatically-generated file. Do not edit!
################################################################################

# Add inputs and outputs from these tool invocations to the build variables
C_SRCS += \
../synergy/ssp/src/driver/r_fmi/r_fmi.c

OBJS += \
./synergy/ssp/src/driver/r_fmi/r_fmi.o

C_DEPS += \
./synergy/ssp/src/driver/r_fmi/r_fmi.d


# Each subdirectory must supply rules for building sources it contributes
synergy/ssp/src/driver/r_fmi/%.o: ../synergy/ssp/src/driver/r_fmi/%.c
@echo 'Building file: $<'
@echo 'Invoking: GNU ARM Cross C Compiler'
D:\Renesas\Synergy\e2studio_v7.3.0_ssp_v1.6.0\Utilities\\/isdebuild arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -O2 -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -Wunused -Wuninitialized -Wall -Wextra -Wmissing-declarations -Wconversion -Wpointer-arith -Wshadow -Wlogical-op -Waggregate-return -Wfloat-equal -g3 -D_RENESAS_SYNERGY_ -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\synergy_cfg\ssp_cfg\bsp" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\synergy_cfg\ssp_cfg\driver" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\synergy\ssp\inc" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\synergy\ssp\inc\bsp" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\synergy\ssp\inc\bsp\cmsis\Include" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\synergy\ssp\inc\driver\api" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\synergy\ssp\inc\driver\instances" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\src" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\src\synergy_gen" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\synergy_cfg\ssp_cfg\framework\el" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\synergy\ssp\inc\framework\el" -I"D:\Data\Projects\TEAM\TRY\Synergy\Sample Projects\synergy\ssp\src\framework\el\tx" -std=c99 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@)" -c -o "$@" -x c "$<"
@echo 'Finished building: $<'
@echo ' '

 

In both cases, there is an r_fmi folder in synergy\ssp\src\driver\r_fmi, and some source files, but not r_fmi.o. I am assuming the compiler was either not able to generate the object files or couldn't download it from synergy website? I have had several problems with running Synergy in e2 studio due to proxy settings before.

Any ideas as to what this error is, please?

I am using Synergy SSP version 1.7.5.

 

Regards,

Sudhi

Viewing all 4262 articles
Browse latest View live


Latest Images