-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from uv-software/development
Release candidate 2 for version v0.2.1 (service release)
- Loading branch information
Showing
8 changed files
with
45 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
### Wrapper Library for Kvaser CAN Interfaces (Windows®) | ||
|
||
_Copyright © 2017-2022 Uwe Vogt, UV Software, Berlin ([email protected])_ | ||
_Copyright © 2017-2022 Uwe Vogt, UV Software, Berlin ([email protected])_ | ||
|
||
# CAN API V3 for Kvaser CAN Interfaces | ||
|
||
|
@@ -152,4 +152,4 @@ _If you connect your CAN device to a real CAN network when using this library, y | |
### Contact | ||
E-Mail: mailto://[email protected] \ | ||
Internet: https://www.uv-software.com | ||
Internet: https://www.uv-software.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
_Copyright © 2004-2022 Uwe Vogt, UV Software, Berlin ([email protected])_ \ | ||
_All rights reserved._ | ||
|
||
Version $Rev: 1019 $ | ||
Version $Rev: 1020 $ | ||
|
||
# A CAN Interface Wrapper Specification | ||
|
||
|
@@ -54,7 +54,7 @@ extern int can_bitrate(int handle, can_bitrate_t *bitrate, can_speed_t *speed); | |
extern int can_property(int handle, uint16_t param, void *value, uint32_t nbyte); | ||
|
||
extern char *can_hardware(int handle); | ||
extern char *can_software(int handle); | ||
extern char *can_firmware(int handle); | ||
|
||
#if (OPTION_CANAPI_LIBRARY != 0) | ||
extern char *can_library(int handle); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
/* | ||
* CAN Interface API, Version 3 (generic) | ||
* | ||
* Copyright (c) 2004-2021 Uwe Vogt, UV Software, Berlin ([email protected]) | ||
* Copyright (c) 2004-2022 Uwe Vogt, UV Software, Berlin ([email protected]) | ||
* All rights reserved. | ||
* | ||
* This file is part of CAN API V3. | ||
|
@@ -51,7 +51,7 @@ | |
* | ||
* @author $Author: eris $ | ||
* | ||
* @version $Rev: 993 $ | ||
* @version $Rev: 1020 $ | ||
* | ||
* @defgroup can_api CAN Interface API, Version 3 | ||
* @{ | ||
|
@@ -120,6 +120,7 @@ typedef int can_handle_t; | |
* @{ */ | ||
#define can_transmit(hnd, msg) can_write(hnd, msg, 0U) | ||
#define can_receive(hnd, msg) can_read(hnd, msg, 0U) | ||
#define can_software(hnd) can_firmware(hnd) | ||
#define can_msg_t can_message_t | ||
/** @} */ | ||
|
||
|
@@ -445,7 +446,7 @@ CANAPI char *can_hardware(int handle); | |
* | ||
* @returns pointer to a zero-terminated string, or NULL on error. | ||
*/ | ||
CANAPI char *can_software(int handle); | ||
CANAPI char *can_firmware(int handle); | ||
|
||
|
||
#if (OPTION_CANAPI_LIBRARY != 0) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters