From 4af072d6d365a03a6e9e61478158c5a253d54949 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20M=C3=BCltin?= Date: Thu, 2 Jun 2022 10:57:28 +0200 Subject: [PATCH 1/2] Support notification update --- README.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/README.md b/README.md index 27497ad3..a6d37c4c 100644 --- a/README.md +++ b/README.md @@ -9,20 +9,8 @@ The international standard ISO 15118, entitled "Road vehicles - Vehicle to grid A rise in the wide application of this standard is essential for reaching the goal of integrating EVs as flexible energy storage devices into a smart grid. -### Mission Statement -The RISE V2G project serves as an open source standard-compliant reference implementation and documentation. As such, the objective is to provide a test platform for interoperability testing and to offer an information resource for interested parties. The adoption of a new technology heavily depends on the interoperability of its various implementations. The more tests conducted, the more stable and reliable the developed solution will be. - -RISE V2G shall evolve to cover all aspects of conductive and inductive charging and communication from the data link layer up to the application layer. However, it requires a lot of work to be done to fulfil this endeavor. -Your assistance would therefore be very appreciated, be it by testing this reference implementation against your own solution - this way uncovering possible bugs or making code optimisation suggestions - or by providing an implementation for yet missing parts. - -### More Information -- View the [RISE V2G Basics online course](https://courses.v2g-clarity.com/p/risev2g-basics) to get RISE V2G up and running on your computer in under an hour. - -![RISE V2G Basics Course](https://v2g-clarity.com/risev2g-basics-video-image/) - - ### Support Update -Due to a lack of time on my side and ongoing work to create a new and production-ready open-source implementation of ISO 15118 as part of [Josev (Joint Operating system for Seamless EV charging)](https://www.switch-ev.com/josev), I need to discontinue the support for RISE V2G. Josev will likely be launched on GitHub by the end of 2021 under the same MIT License. +The RISE V2G project is no longer supported. Switch's new [Josev Community](https://github.com/SwitchEV/josev) project is replacing RISE V2G. ### License From 4c802b172eeeddd875b7935b419865f970e5c5b7 Mon Sep 17 00:00:00 2001 From: dportnrj <87133692+dportnrj@users.noreply.github.com> Date: Thu, 4 Aug 2022 20:00:19 +0300 Subject: [PATCH 2/2] misprint: printStackTrace added --- .../shared/exiCodec/EXISchemaFactoryExceptionHandler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RISE-V2G-Shared/src/main/java/com/v2gclarity/risev2g/shared/exiCodec/EXISchemaFactoryExceptionHandler.java b/RISE-V2G-Shared/src/main/java/com/v2gclarity/risev2g/shared/exiCodec/EXISchemaFactoryExceptionHandler.java index 6d1f85f2..628f5469 100644 --- a/RISE-V2G-Shared/src/main/java/com/v2gclarity/risev2g/shared/exiCodec/EXISchemaFactoryExceptionHandler.java +++ b/RISE-V2G-Shared/src/main/java/com/v2gclarity/risev2g/shared/exiCodec/EXISchemaFactoryExceptionHandler.java @@ -51,7 +51,7 @@ public void error(EXISchemaFactoryException eXISchemaFactoryException) throws EX @Override public void fatalError(EXISchemaFactoryException eXISchemaFactoryException) throws EXISchemaFactoryException { logger.warn("FATAL:"); - eXISchemaFactoryException.getStackTrace(); + eXISchemaFactoryException.printStackTrace(); } -} \ No newline at end of file +}