README.txt 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. -------------------------------------------------------------------------
  2. OpenV2G - an open source project implementing the basic functionality of the ISO IEC 15118 vehicle to grid (V2G) communication interface
  3. Version 0.9, released June 19, 2014
  4. http://openv2g.sourceforge.net/
  5. Please report bugs via the SourceForge bug tracking system at http://sourceforge.net/tracker/?group_id=350113.
  6. Thank you.
  7. Copyright (C) 2007-2014 Siemens AG
  8. This program is free software: you can redistribute it and/or modify
  9. it under the terms of the GNU Lesser General Public License as published
  10. by the Free Software Foundation, either version 3 of the License, or
  11. (at your option) any later version.
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU Lesser General Public License for more details.
  16. You should have received a copy of the GNU Lesser General Public License
  17. along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. -------------------------------------------------------------------------
  19. CHANGES from version 0.8:
  20. -------------------------------------------------------------------------
  21. * large code footprint reduction which resulted in a new API
  22. (please take a look at the example in src/test folder)
  23. * datatype differences w.r.t. arrays, strings, bytes, isUsed, and enum-naming
  24. * bug-fixes
  25. * Note: OpenV2G 0.8 and 0.9 are interoperable, meaning that one can generate
  26. streams with one and decode with the other or vice-versa
  27. -------------------------------------------------------------------------
  28. CHANGES from version 0.7:
  29. -------------------------------------------------------------------------
  30. * adaption of V2G schema changes (reflects the ISO/IEC 15118-2 FDIS status)
  31. * bug-fixes
  32. -------------------------------------------------------------------------
  33. CHANGES from version 0.7:
  34. -------------------------------------------------------------------------
  35. * adaption of V2G schema changes (reflects the ISO/IEC 15118-2 FDIS status)
  36. * bug-fixes
  37. -------------------------------------------------------------------------
  38. CHANGES from version 0.6:
  39. -------------------------------------------------------------------------
  40. * adaption of V2G schema changes (reflects the ISO/IEC 15118-2 DIS status and DIN 70121)
  41. * reduced memory usage
  42. * EXI decoder skips schema deviations according to EXI Profile
  43. * bug-fixes
  44. -------------------------------------------------------------------------
  45. CHANGES from version 0.5:
  46. -------------------------------------------------------------------------
  47. * adaption of V2G schema changes
  48. * application handshake protocol implementation
  49. * asynchronised communication
  50. * reduced memory usage
  51. * changed V2GTP byte order from little endian to big endian
  52. * bug-fixes
  53. * updated AC demo interaction between EV and EVSE, and
  54. * updated DC demo interaction between EV and EVSE
  55. -------------------------------------------------------------------------
  56. CHANGES from version 0.4:
  57. -------------------------------------------------------------------------
  58. * adaption of V2G schema changes
  59. * V2GTP implementation (replaces the DoIP implementation)
  60. * EXI default coder for the 15118 schema (replaces the strict mode of EXI)
  61. * AC demo interaction between PEV and EVSE, and
  62. * DC demo interaction between PEV and EVSE
  63. -------------------------------------------------------------------------
  64. CHANGES from version 0.3.1:
  65. -------------------------------------------------------------------------
  66. * adaption of V2G schema changes
  67. * supporting of DC messages
  68. * example program showing the message sequence of AC charging and
  69. DC charging
  70. * bug-fixes
  71. -------------------------------------------------------------------------
  72. CHANGES from version 0.3:
  73. -------------------------------------------------------------------------
  74. * Bug-fixes
  75. * reduced memory usage
  76. * some type changes in the EXI codec and V2G service:
  77. ** struct v2gService->struct EXIService in v2g_service.h
  78. ** size_t->uint16_t in v2g_serviceClientDataTransmitter.h and doIP.h
  79. * renaming of some enumeration values in v2g_serviceDataTypes.h
  80. -------------------------------------------------------------------------
  81. CHANGES from version 0.2.2:
  82. -------------------------------------------------------------------------
  83. * Bug-fixes
  84. * first DoIP implementation
  85. * V2G message error handling
  86. * adaption of V2G schema changes
  87. * code optimizations
  88. -------------------------------------------------------------------------
  89. CHANGES from version 0.2.1:
  90. -------------------------------------------------------------------------
  91. * Bug-fixes
  92. * adaption of V2G schema changes
  93. * some code optimizations
  94. -------------------------------------------------------------------------
  95. CHANGES from version 0.2:
  96. -------------------------------------------------------------------------
  97. * Bug-fixes
  98. * Fixed compiler warnings
  99. -------------------------------------------------------------------------
  100. CHANGES from version 0.1:
  101. -------------------------------------------------------------------------
  102. * Bug-fixes
  103. * Service and Client added