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

Author Topic: New on the community, very interested in EVE  (Read 10144 times)

karst.drenth

  • Newbie
  • *
  • Posts: 18
    • View Profile
New on the community, very interested in EVE
« on: November 19, 2021, 11:17:48 AM »

Hi All,

My name is Karst Drenth, working at Drenth Design & Consulting BV in the Netherlands.
The company offers design, development and consulting for the the model railroad industry. All three activities on Electronics, Model construction, Prototype Investigation and 3D Drawing.

My application of EVE will be using Atmel SAMD21 as MCU and BT815 as an EVE to create touch screen throttle and turnout controllers.

I intend to use EVE Screen Designer in combination with my home-brewed micro-kernel for ATSAMD21 devices, so my customer easily can extend the product ( by simply using the EVE SD ) once development is finished.

Greetz,
Karst
Logged

BRT Community Admin

  • Administrator
  • Newbie
  • *****
  • Posts: 16
    • View Profile
Re: New on the community, very interested in EVE
« Reply #1 on: November 22, 2021, 09:09:37 AM »

Welcome to the Community.

We will be very interested to hear further details of your EVE projects.

best regards

BRT Community Admin
Logged

Rudolph

  • Sr. Member
  • ****
  • Posts: 389
    • View Profile
Re: New on the community, very interested in EVE
« Reply #2 on: November 22, 2021, 04:56:01 PM »

My application of EVE will be using Atmel SAMD21 as MCU and BT815
...
I intend to use EVE Screen Designer in combination with my home-brewed micro-kernel for ATSAMD21 devices

Interesting.
I never really used ESD though, this is just not my cup of tea and I started my own library a couple of years ago.

I am mostly using ATSAMC21 and ATSAME51 currently and these practically have the same SERCOM units as the ATSAMD21.
At least this should provide some inspiration: https://github.com/RudolphRiedel/FT800-FT813
And I believe I have a ATSAMD21 based board lying around somewhere.
Logged

karst.drenth

  • Newbie
  • *
  • Posts: 18
    • View Profile
Re: New on the community, very interested in EVE
« Reply #3 on: November 24, 2021, 09:15:55 AM »

Hi Rudolph,

Thanks for your reply,

I already managed to set my board up with you library ;)

"All" I had to do is make my own Arduino-SAMD variant...

So affirm: ATSAMD21G18 working with your lib (y)

Now next stop is integrating ESD output....

Greets,
Karst
Logged

karst.drenth

  • Newbie
  • *
  • Posts: 18
    • View Profile
Re: New on the community, very interested in EVE
« Reply #4 on: November 24, 2021, 04:08:43 PM »

Hi all,

I really like your work Rudolph  8) very good !

Below as a video I made of my new device :)

https://www.youtube.com/v/teS-e2y24jo

Just needed a couple of hours digging around in your (sample) code and I could easily make this nice looking demo ! ( which I designed before in ESD, just copied the coordinates and sizes )

Greets,
Karst
Logged

Rudolph

  • Sr. Member
  • ****
  • Posts: 389
    • View Profile
Re: New on the community, very interested in EVE
« Reply #5 on: November 24, 2021, 06:41:40 PM »

Well, it should build and work on practically any Arduino target now, even with the default target.
Yes, I know there are also Arduino cores that do not have a standard SPI class.

But that would be without using DMA since there is no standard way to implement SPI over DMA for Arduino.

Check EVE_target.cpp, this has the DMA support code for Arduino targets.
And the Metro M4 variant is using Adafruits ZeroDMA library, which was originally written for the SAMD21.
Logged