implementing LIN protocol on stm32 - stm32

I am looking for implementing LIN protocol by STM32CUBEMX and I have searched all over the web and there are some documents and source code.
Is there anyone who has implemented LIN Bus listener project by STM32CUBEMX?
Best Regards

Related

Angular implementation of Azure Communication Services Video Calling Features

We are trying to implement video calling features using Azure Communication Services using Angular but were not able to find any sample code to do the same.
Appreciate it if someone can share any sample code to implement this.
See the following web quick start guide - QuickStart: Add 1:1 video calling to your app
This is the package you'll need - https://www.npmjs.com/package/#azure/communication-calling

Lazarus SimpleServer

I would like to create a Simple Socket Server in Lazarus, using the built in TSimpleIPCServer. I do not want to use any other framework or product !
There seem to be no documentation on this Component. I have looked all over the Net but I could not find any examples.
But IPC isn't a Simple Socket library it is provide memory sharing to another application. Also in Windows 7 and above isn't easy to communicate with fpc's IPC server.
My advise use or change that software/library:
http://torry.net/vcl/system/appscommunications/ipc.zip
It is working I tested with delphi but for windows it can be compile in lazarus.

Smartface.io MQTT plugin

I need to use a mqtt client in smartface.io and was wondering if someone has developed a plugin or can advice how to do it. Actually the broker does not support websockets
Thanks
There is no support in SmartFace for MQTT so you need to implement this yourself.
A good option for beginners might be another product like: B4A https://www.b4x.com/b4a.html .. where the community have already created a lot of libraries/resources.
https://www.b4x.com/android/forum/threads/jmqtt-official-android-mqtt-client.59497/

Building an Openfire XMPP External Component - use Tinder or Whack?

I'm trying to build an external component for the Openfire XMPP server, but I'm a bit confused between Tinder and Whack. Tinder seems to be the newer library and has the AbstractComponent interface which Ignite Realtime are recommending over the standard Component, however, whenever anyone talks about building an external component, they seem to be using the Whack library.
Should I be using Tinder or Whack? Or a bit of both?
Many thanks
Tinder utilises the Whack library and wraps the component in an abstract component interface so you don't have to implement all the methods for handling all types of packets if you don't need to.
Have a look at the source for the weather example.
It's also worth looking at the whack source to see how it handles the packets as this is what is ultimately connecting to your server and sending packets.
Personally I use the externalcomponent manager from whack and setup an abstract component using tinder which is exactly what the weatherabstract example does.
That's the best place to start.

Is there any iOS implementation of the Bayeux protocol (COMET, server push to client)?

Is there any library with implementation of the Bayeux protocol, for use in iOS (iPhone/iPad) development, for the building Server push technology iPhone client?
And what are your suggestion for doing this?
Even though I haven't tried it, I would check FayeObjC:
"A simple Objective-C client library for the Faye publish-subscribe messaging server. FayeObjC is implementing on top of the zimt Objective-C web socket library and will work on both Mac and iPhone projects. JSON parsing is handled using the excellent JSONKit (github.com/johnezang/JSONKit) library which is included in the FayeObjC source folder."
For more info:
http://blog.cometcoast.com/post/3668374972/fayeobjc-an-objective-c-faye-client-for-ios-mac-os
Sources:
https://github.com/pcrawfor/FayeObjC
I know that this question is fairly old, but I googled and found it. Maybe this answer can help someone else:
Take a look at ddunkin cometclient library: https://github.com/ddunkin/cometclient
I haven't tested but will try it with my next project.
I suggest you to use my reimplementation FayeClient with many additional stuff like blocks and error handling MZFayeClient
I've created a fork of the DDunkin Comet client that supports ARC and client based subscription management which helps with resubscribing on disconnects. I also added a lot of block support and delegate call backs.
https://github.com/yinzara/cometclient