AUTOSAR-NM: True-False-String wrong way around for PNI (BUGFIX)

This patch fixes the PNI TFString, which was wrong. Correct is:
0 = "... contains no Partial Network ..."
1 = "... contains Partial Network ..."

Fixes #17154


(cherry picked from commit 238446dc91)
This commit is contained in:
Dr. Lars Völker 2021-01-13 22:41:54 +00:00 committed by Jaap Keuter
parent 9fd813398f
commit f4d5d56592
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ static const true_false_string tfs_autosar_nm_control_active_wakeup = {
"Node has woken up the network", "Node has not woken up the network" };
static const true_false_string tfs_autosar_nm_control_pni = {
"NM message contains no Partial Network request information", "NM message contains Partial Network request information" };
"NM message contains Partial Network request information", "NM message contains no Partial Network request information" };
/*** Configuration items ***/
/* Set the order of the first two fields (Source Node Identifier and Control Bit Vector */