historical_read_test_data.h 711 B

123456789101112131415161718192021222324252627
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. *
  5. * Copyright 2018 (c) basysKom GmbH <opensource@basyskom.com> (Author: Peter Rustler)
  6. */
  7. /* Data in this header is gathered from OPC Unified Architecture, Part 11, Release
  8. 1.03 Page 5-6 from OPC Foundation */
  9. #ifndef UA_HISTORICAL_READ_TEST_DATA_H_
  10. #define UA_HISTORICAL_READ_TEST_DATA_H_
  11. #include "ua_types.h"
  12. #define TESTDATA_START_TIME 99
  13. #define TESTDATA_STOP_TIME 501
  14. static UA_DateTime testData[] = {
  15. 100,
  16. 200,
  17. 300,
  18. 400,
  19. 500
  20. };
  21. #endif /*UA_HISTORICAL_READ_TEST_DATA_H_*/