BRT Community

Please login or register.

Login with username, password and session length
Advanced search  

News:

Welcome to the Bridgetek Community!

Please read our Welcome Note

Technical Support enquires
please contact the team
@ Bridgetek Support

Please refer to our website for detailed information on all our products - Bridgetek - Bridging Technology

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - Cyrilou

Pages: [1] 2
1
Discussion - EVE / How can I get image height and width after cmd_inflate?
« on: February 22, 2024, 11:11:27 AM »
Hi?

I written in EVE flash blob file, map file and a zlib image that can be variable.

I inflate image in RAM_G, but when I use CMD_SETBITMAP to display it, I must know Height and Width properties that can be variables.

How can I get this properties, since CMD_GETPROPS doesn't work on  CMD_INFLATE but on CMD_LOADIMAGE?? :-\

2
Hi,

Why this menu disappeared?
It was vvery helpfull for me. How can I do now with new version for eclipse project types?

regards

3
Discussion - EVE / ESD 4.16 type ft_argb32_t disappeared
« on: April 27, 2023, 03:19:16 PM »
Hi,

I've just installed this version but I don't find ft_argb32_t type on selection list of a variable for example. Is it normal?


regards


4
Discussion - EVE / Disable AUDIO_L output signal
« on: March 01, 2023, 03:15:42 PM »
Hi,

I'd like to disable this output by software because screen emits 20db peak on spectrum analyser on near field with ffc20 ribbon. This is problematic for CE certification.

When I cut AUDIO_L line on FFC20 ribbon on screen side, it's ok! But I need a software solution.

What should I try?

If I disable audio engine (reg_cpureset=4), output is still active.

What in theory could OFF AUDIO_L pin, I see nothing in BT815 datasheet, there is always 30Mhz sinusoidal signal in idle (no sounds played).

Thank you.


5
Discussion - EVE / Bitmap truncated randomly
« on: November 09, 2022, 03:35:14 PM »
Hi,

I'm using ESD and sometimes fonts or ESD_images are truncated when I'm doing slide animations.
I've localized where is the problem:
In file Esd_Render_Bitmap.c:

void Esd_CoDl_Bitmap_Vertex(int16_t x, int16_t y, uint8_t handle, uint16_t cell)
{
   EVE_HalContext *phost = Esd_GetHost();
   if ((EVE_CHIPID >= EVE_FT810) && (x < 0 || y < 0 || x >= 512 || y >= 512))
   {
      EVE_CoDl_vertexFormat(phost, 0);
      EVE_CoDl_bitmapHandle(phost, handle);
      Esd_CoDl_PagedBitmapSource(handle, cell >> 7);
      EVE_CoDl_cell(phost, cell & 0x7F);
      EVE_CoCmd_dl(phost, VERTEX2F(x, y));
     }
   else
   {
      Esd_CoDl_PagedBitmapSource(handle, cell >> 7);
      EVE_CoCmd_dl(phost, VERTEX2II(x, y, handle, cell));
   }
}

When I comment VERTEX2II part of code, bitmap are not truncated, otherwise I loose bottom of the bitmap randomly with slide animations.

How can we explain this? Is something missing in dl commands?

6
Discussion - EVE / EVE screen designer cpu use
« on: May 20, 2022, 03:56:04 PM »
Hi all,

When ESD is running and rendering UI elements, Emulatorprocess.exe is using 100% of the CPU. Can you reduce that? I think your QT main task doesn't use sleep function to authorize idle time for other tasks.


7
Hi,

I have a background with a gradient of blue.
I'd like to write a text with a gradient of white with transparency.
CMD_GRADIENTA seems to not work to do this because it makes a gradient of colors also.

any ideas?

regards

8
Discussion - EVE / center text vertically with OPT_FILL
« on: July 21, 2021, 04:24:14 PM »
Hi,

If I use cmd_text to display a long text with OPT_FILL|OPT_CENTER, text is not centered on Y position in multiline mode (no \n used). I'm using a custom FONT in ram. Text is centered only on the first line of the text.
How can I do to center the entire group of lines?

9
Discussion - EVE / Fonts in progmem declared as static
« on: June 30, 2021, 10:32:35 AM »
Hi,

Why fonts in PROGMEM ressource type  are declared as static array? In general MCU have a little space in RAM, and with that my RAM is full. Const declaration would be a best choice right?

10
Discussion - EVE / ESD image rotate widget not rotating?
« on: June 23, 2021, 03:10:52 PM »
Hi ,

I'm using this widget to rotate a PNG icon but when I update RotateAngle property it doesn't rotate.
Also, this widget is not described in documentation. Does it works?

11
Hi all!

I'd like to initialise screen in my boot with the EVE "lite" library to display some error codes or logos. But when bootloader jumps to app, which uses ESD library, how can I detect that screen is already initialized to avoid the glitch of init? What source code can I implement in ESD init to avoid this secondary init?

regards

12
Discussion - EVE / font conversion height problem
« on: June 02, 2021, 04:23:33 PM »
Hi,

I use poppins.ttf font in my ESD project.
But when I convert it height of character '3' is higher than character '2'. Same problem with '8'.
See attached picture...

PS: In microsoft word font is displayed correctly.

13
Discussion - EVE / Display spinner manually in ESD?
« on: May 26, 2021, 03:01:03 PM »
Hi,

I'd like to display spinner with ESD but this widget is not available, only for long loadings. How can I display it manually?
Thanks.

14
Actually, Libraries folder is in C:\Program files\EVE Screen Designer. How can I move it to other place without break ESD functionnalities. Can I add a entry in register or an *.ini file?

15
Discussion - EVE / Enable and Disable slots
« on: April 12, 2021, 02:51:42 PM »
Hello,

You don't talk about built in slots Enable and Disable in ESD4.10 documentation. When I create Enable slot, generated code overrides correctly Ft_Esd_Widget_Enable callback. It works for set active widget function with true argument...

Pages: [1] 2