-
Notifications
You must be signed in to change notification settings - Fork 392
2021 04 15 Eclipse iceoryx developer meetup
Michael Pöhnl edited this page Apr 15, 2021
·
6 revisions
Date: 2021/04/15
Time: 17:00 CET
Link: https://eclipse.zoom.us/j/95918504483?pwd=RWM5Y1pkeStKVDZsU09EY1hnclREUT09
- Michael Pöhnl, Apex.AI
- Bernhard Eickhoff, Bosch
- Christian "Ronny" Eltzschig, Apex.AI
- Indramani Arora, Avin Systems
- Marika Lehmann, Apex.AI
- Matthias Killat, Apex.AI
- Stephan Schnitzer, Bosch
- Martin Hintz, Bosch
- Mathias "Bob" Kraus, Apex.AI
- Oliver Schünemann, Bosch
- Dietrich Krönke, Apex.AI
- Simon Hoinkis, Apex.AI
- Jeff Ithier, Apex.AI
- General: Are there other agenda points?, 2 mins
- Sending dynamic data types #594, Eltzschig, 10 min
- Tracking activities in Project Boards, Hintz, 5 min
- v1.0 -> for the 1.0 LTS release
- Sprints -> I guess ApexAI sprint schedule?
- What about other activities/issues that are in progress but don't fit in theses 2?
- Bug or Feature (duration): 1_s - 2_s + 3_s != 1_s + 3_s - 2_s?, Hintz, 5 min
- Usage of std converter, e.g.
std::to_string
, Hintz, 5 min - How to continue with Vector PR https://github.com/eclipse-iceoryx/iceoryx/pull/491, Kraus, 15 min
- The iceoryx website goes live, Hoinkis, 5 min
- Sending dynamic data types
- It is technically not possible to send STL containers via iceoryx. Also not with custom allocators as there are internal pointers that are only valid within one process
- Two possibilities: Either use static containers like cxx::vector and cxx::string from iceoryx:utils, or have some generated code or reflection information to serialize the dynamic data structures into a shared memory chunk
- Tracking activities in Project Boards
- The existing sprint board can be used by all committers, different companies can use different labels like
Globex
orStoepsel
to have an internal view
- Bug or Feature (duration)
- This could somehow be solved with the introduction of a timepoint abstraction
- Martin to create an issue for this
- Maybe having a nice cup of Rust https://doc.rust-lang.org/std/time/index.html
- How to continue with Vector PR
- Proceed with a design document and smaller PRs