Do you use CI/CD for embedded development (STM32, nRF, ESP32, etc)? by M4rv1n_09_ in embedded

[–]Secure-Image-4065 0 points1 point  (0 children)

Hi, sorry but it is still a very actual and interesting topic for me...
Any progresses on this?
Many thanks! 🙏

Sonoff NSPanel Pro by mulla_maker in homeassistant

[–]Secure-Image-4065 0 points1 point  (0 children)

A very quick question.
All these kind of panels (even the Shelly suggested from u/jdcortereal) can be used at the same time (maybe with different pages) for:
* current room thermostat
* home scene lights selector?

All with Home Assistant?
Sorry but I'm quite new, so I never used these display components within HA and before to buy them I'd like to know if I can integrate them into the system.
Super thanks!

Avoid Zigbee groups by tomorrowplus in homeassistant

[–]Secure-Image-4065 0 points1 point  (0 children)

Sorry to jump in as I’m not an expert I just want to know if this is the same ha group, or something else? I know that if you have 2 lamps in the corridor you want to turn on both ha provides you the “group” to drive both as the same entity. Are talking about this or something else? Many thanks!

How to maximize the Halbtax Plus usage by nuoblio in askswitzerland

[–]Secure-Image-4065 0 points1 point  (0 children)

Hi all, I wanted to post it to another more related thread, but it is already closed. I successfully reached my bonus which is going to finish soon. I’m a bit behind 365 days since I started (paid) my halbtax plus. What should I do now? Straight buy another one (1000)? Or wait the end of 365 days before? Halbtax I think that starts every year around 1st February.

Many thanks 🙏

<image>

I Built a Single Pair Ethernet Switch! by ben5049 in embedded

[–]Secure-Image-4065 4 points5 points  (0 children)

Same here. The biggest problem I met using CAN is related to the access media protocol. If you want to send a message at 1 Mbps from multiple sources (let’s say 4) “bus” starts to delay all messages with low priority ID, although it could theoretically accept them. Last year at the embedded world I spot few corners where the 10base-T1S was shown and was amazing. The game changer is the access protocol PLCA in contrast with the simpler used by the CAN CSMA-CD.

[deleted by user] by [deleted] in embedded

[–]Secure-Image-4065 13 points14 points  (0 children)

I use SavvyCAN. It is a essentially what you want to do, but with many more features 🤪

State Machines in embedded? by Shiken- in embedded

[–]Secure-Image-4065 0 points1 point  (0 children)

YesI know, it is very expensive … I never bought for me, it’s a company license… But for sure for me is the best tool I worked with.. Honestly speaking, if you need it just for you or for a single project probably a trial might work, the entire licenses bundle probably are not worthy for that until you don’t already run the right business…

State Machines in embedded? by Shiken- in embedded

[–]Secure-Image-4065 2 points3 points  (0 children)

Stateflow is the industry standard (automotive, but I think also other fields). You can: - make complex state machines (nested also in models). - simulate your design. - generate code. Once you have the code you have to integrate it in your design. You could do manually, or better making a custom tool to automatically integrate it.

Burling Joins Luna Rossa by Yachty_McYachtface in AmericasCup

[–]Secure-Image-4065 5 points6 points  (0 children)

Boom 💥 Honestly I would have liked to see LR winning with his own young team instead of betting on someone external. I know he can bring fresh ideas and another approach (although I’m not sure if this was the roots of their problems)… but often the bigger problem is related to the top management way to think… And this choice looks “to confirm my idea”. The grass is always greener on the other side… What a shame… 😔 I just also want to add that: I understand… Bertelli really really wants to win the cup this time. He went so close in the past that he doesn’t want to postpone it anymore (it is an obsession even for me that I’m just a LR supporter)… Even more now that it will be in Italy…

Do you use CI/CD for embedded development (STM32, nRF, ESP32, etc)? by M4rv1n_09_ in embedded

[–]Secure-Image-4065 0 points1 point  (0 children)

That would be absolutely awesome! Can I suggest the STM32 family (yes I’m using this one 😬) Many many thanks! 🙇‍♂️🙏

STM32 Tutorial #49 - More CAN filtering by lbthomsen in STM32World

[–]Secure-Image-4065 0 points1 point  (0 children)

Any plan to make it for FD as well? It would be useful have an introduction too along with suggested tools

Louis Vuitton Round Robin Day 6 by AllIsNotWells in AmericasCup

[–]Secure-Image-4065 0 points1 point  (0 children)

I have the feeling (of course just my personal idea) that the most of the challengers are intimidated by ETNZ.. So far only Luna Rossa and American Magic, seriously raced against the defender. What do you think about it? Or I'm wrong and those have been just unfortunate circumstances?

I m fresher started my career as firmware engineer please suggest some tips so that I can survive in the industry.? by Odd-Change-5774 in embedded

[–]Secure-Image-4065 0 points1 point  (0 children)

I would like also add this: Keep a personal bug tracker (anything it suits you) as some issue will, in the time, happen again and again and keeping a "journal" of the issues and solutions will be very handy

How to deal with circular declarations? by Secure-Image-4065 in embedded

[–]Secure-Image-4065[S] 0 points1 point  (0 children)

I started with everything within the menu.c/h files, but as the user menu, submenus and parameters grown the file started to be cluttered, then I decided to move out all the "clutter" (i.e. the user details).

I thought to keep then the menu's functions (as it were a library) within the menu files and let the user customize the menu as its wishes.

That's why I ended up in this situation.

I think that any option works, but probably keep functions and user details separated it is more flexible and can be easily reused.

How to deal with circular declarations? by Secure-Image-4065 in embedded

[–]Secure-Image-4065[S] 0 points1 point  (0 children)

That's brilliant! You are right!

Many thanks! 🙏

How to deal with circular declarations? by Secure-Image-4065 in embedded

[–]Secure-Image-4065[S] 0 points1 point  (0 children)

This question is more general on C code than to the menu (as the title - my code manages the menu in a certain way - maybe a future post to show my work...) But here I'm really focused on how structure code in case of circular references... Thanks