# Virtual F2F Meeting #Day1 19/July/2022 Date : 9:00-10:30(CET) 19/July/2022 Speaker: Akiyoshi Yamada(Toyota) Minutes Taker: Akbar(LGE) ## General Joint Meeting 22/July Cancel ###### tags: `f2f-meeting` `WG-AP-ST` ## Participants Participants would be check on your name * [ ] Tetsurou Ayano(SCSK) * [ ] Koki Onoda(APTJ) * [ ] Akbar Mirkar(LGE) * [ ] Ryosuke Takahashi(Nagoya Univ.) * [ ] Nishant Khadria(Deloitte) * [ ] Masahiro Kawanishi(GAIO) * [ ] Hiroki Takeuchi(GAIO) * [ ] Kenji Ohnisi(GAIO) * [ ] Teruyuki Kawagoe(NEC) * [ ] Shiori Komoto(NEC) * [x] Stefan Aust(NEC) * [ ] Harshal Dalal(Nissan) * [ ] Seungyueb Chae(PopcornSAR) * [ ] Yuushi Gogami(SCSK) * [ ] Kento Yamazaki(SCSK) * [ ] Miho Asai(SCSK) * [ ] Aaswad Kulkarni(TCS) * [ ] Akiyoshi Yamada(TME) * [ ] Kohsuke Nakamura(Honda) * [ ] Asha Prashant Patil(BOSCH) * [ ] Andreas Tennert(TraceTronic) * [ ] Hitoshi Tomizawa(NEC) * [ ] Tatsuya Kamohara(SCSK) * [ ] Assem Mostafa(Valeo) * [ ] Prathamesh Hatle(capgenimi) * [ ] Oinuma Masahiro(GAIO) ### End of Expert Discussion https://jira.autosar.org/issues/?jql=filter%20%3D%2016801%20AND%20filter%20%3D%2016885%20AND%20issuetype%20%3D%20Change ### General https://jira.autosar.org/browse/AR-113414 ### CM https://jira.autosar.org/browse/AR-111719 ### UCM https://jira.autosar.org/browse/AR-111718 ### EMO https://jira.autosar.org/browse/AR-113412 ### Other ## JIRA Ticket Work Through https://jira.autosar.org/secure/Dashboard.jspa?selectPageId=13624 ### How to use ECU2 1. Modify Yocto Layer https://code.autosar.org/tf-apd/yocto-layers/-/commit/c1c063d65607fdd8ad1082092fd778d721bff3a8 2. Extend session https://code.autosar.org/tf-apd/ara-api/-/blob/feature/FT-ST-TFAPD-5108_Implement_STS_CM_00001/tools/system_testers/src/testcases/cm_tests.cpp L225 - L232 add the following codes before RoutineControl for SM. ``` if (ecu2ConnnectionState) { ecu2ExtendedDiagnosticSession = diagTest2.SessionControl(SessionType::ExtendedDiagnostic); EXPECT_TRUE(ecu2ExtendedDiagnosticSession); std::this_thread::sleep_for(std::chrono::milliseconds(waitTime)); rv = diagTest2.TesterPresent(TesterPresentSubFunction::ZeroSubFunction); EXPECT_TRUE(rv); std::this_thread::sleep_for(std::chrono::milliseconds(waitTime)); } ```