Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Contact Powerhouse Dynamics at connectware@powerhousedynamics.com to setup credentials for the ConnectWare Git repository https://emonitor.git.beanstalkapp.comRickyPHD@bitbucket.org/sitesage/connectware.git

Expand
title2. Clone the repository and checkout the latest tagged version:

$ git clone https://emonitor.git.beanstalkapp.comRickyPHD@bitbucket.org/sitesage/connectware.git

Cloning into 'connectware'...

remote: Counting objects: 538, done.

Remote: Compressing objects: 100% (517/517), done.

Remote: Total 538 (delta 312), reused 0 (delta 0)

Receiving objects: 100% (538/538), 43.18 MiB | 631.00 KiB/s, done.

Resolving deltas: 100% (312/312), done.

 

$ cd connectware/

$ git tag

1.0.0

1.0.1

….

1.0.15

1.0.16

$ git checkout -b 1.0.16 1.0.16

Switched to a new branch '1.0.16'

OKE implementors should use the latest tagged version.

 

This document contains detailed release notes for each tagged version and information about upgrading from earlier versions to the newer versions.

...

Expand
title 5. Initialize and run the CWL task.

Call CWPortInitTask(), and then from the main loop or dedicated task/thread periodically call CWPortTask().

Refer to ./_OpenKitchenEquipment_OKE/ports/windows/main.c for an example of how to initialize and call the ConnectWare Library from your main() function.

See CWL Task for a detailed explanation of how to properly invoke CWPortInitTask() and CWPortTask().

...