-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpal2.patch
More file actions
2789 lines (2334 loc) · 109 KB
/
pal2.patch
File metadata and controls
2789 lines (2334 loc) · 109 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
diff --git a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_data_dictionary.c b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_data_dictionary.c
index be87f98..8a13747 100644
--- a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_data_dictionary.c
+++ b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_data_dictionary.c
@@ -505,236 +505,236 @@ static bool is_prj_third_system_output_updated = false;
static bool is_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_updated = false;
// Get update flags for inputs interfaces
-bool get_prj_system_input_is_updated_flag(){
+bool get_prj_system_input_is_updated_flag(void){
return is_prj_system_input_updated;
}
-bool get_prj_model_input_is_updated_flag(){
+bool get_prj_model_input_is_updated_flag(void){
return is_prj_model_input_updated;
}
-bool get_prj_input_64_is_updated_flag(){
+bool get_prj_input_64_is_updated_flag(void){
return is_prj_input_64_updated;
}
-bool get_prj_input_with_reliab_is_updated_flag(){
+bool get_prj_input_with_reliab_is_updated_flag(void){
return is_prj_input_with_reliab_updated;
}
-bool get_prj_input_64_with_reliab_is_updated_flag(){
+bool get_prj_input_64_with_reliab_is_updated_flag(void){
return is_prj_input_64_with_reliab_updated;
}
-bool get_prj_input_32_is_updated_flag(){
+bool get_prj_input_32_is_updated_flag(void){
return is_prj_input_32_updated;
}
-bool get_prj_input_int32_is_updated_flag(){
+bool get_prj_input_int32_is_updated_flag(void){
return is_prj_input_int32_updated;
}
-bool get_prj_second_unused_is_updated_flag(){
+bool get_prj_second_unused_is_updated_flag(void){
return is_prj_second_unused_updated;
}
-bool get_prj_second_foo_is_updated_flag(){
+bool get_prj_second_foo_is_updated_flag(void){
return is_prj_second_foo_updated;
}
-bool get_prj_second_bar_is_updated_flag(){
+bool get_prj_second_bar_is_updated_flag(void){
return is_prj_second_bar_updated;
}
-bool get_prj_second_system_output_is_updated_flag(){
+bool get_prj_second_system_output_is_updated_flag(void){
return is_prj_second_system_output_updated;
}
-bool get_prj_second_input_64_to_sec_is_updated_flag(){
+bool get_prj_second_input_64_to_sec_is_updated_flag(void){
return is_prj_second_input_64_to_sec_updated;
}
-bool get_prj_second_test_update_no_over_is_updated_flag(){
+bool get_prj_second_test_update_no_over_is_updated_flag(void){
return is_prj_second_test_update_no_over_updated;
}
-bool get_prj_second_test_update_no_over_64_is_updated_flag(){
+bool get_prj_second_test_update_no_over_64_is_updated_flag(void){
return is_prj_second_test_update_no_over_64_updated;
}
-bool get_prj_second_out_with_reliab_is_updated_flag(){
+bool get_prj_second_out_with_reliab_is_updated_flag(void){
return is_prj_second_out_with_reliab_updated;
}
-bool get_prj_second_input_32_to_second_is_updated_flag(){
+bool get_prj_second_input_32_to_second_is_updated_flag(void){
return is_prj_second_input_32_to_second_updated;
}
-bool get_prj_second_input_int32_to_second_is_updated_flag(){
+bool get_prj_second_input_int32_to_second_is_updated_flag(void){
return is_prj_second_input_int32_to_second_updated;
}
-bool get_prj_third_system_output_is_updated_flag(){
+bool get_prj_third_system_output_is_updated_flag(void){
return is_prj_third_system_output_updated;
}
-bool get_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag(){
+bool get_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag(void){
return is_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_updated;
}
// Set update flags for inputs interfaces without matching outputs
-void set_prj_system_input_is_updated_flag(){
+void set_prj_system_input_is_updated_flag(void){
is_prj_system_input_updated = true;
}
-void set_prj_model_input_is_updated_flag(){
+void set_prj_model_input_is_updated_flag(void){
is_prj_model_input_updated = true;
}
-void set_prj_input_64_is_updated_flag(){
+void set_prj_input_64_is_updated_flag(void){
is_prj_input_64_updated = true;
}
-void set_prj_input_with_reliab_is_updated_flag(){
+void set_prj_input_with_reliab_is_updated_flag(void){
is_prj_input_with_reliab_updated = true;
}
-void set_prj_input_64_with_reliab_is_updated_flag(){
+void set_prj_input_64_with_reliab_is_updated_flag(void){
is_prj_input_64_with_reliab_updated = true;
}
-void set_prj_input_32_is_updated_flag(){
+void set_prj_input_32_is_updated_flag(void){
is_prj_input_32_updated = true;
}
-void set_prj_input_int32_is_updated_flag(){
+void set_prj_input_int32_is_updated_flag(void){
is_prj_input_int32_updated = true;
}
-void set_prj_second_bar_is_updated_flag(){
+void set_prj_second_bar_is_updated_flag(void){
is_prj_second_bar_updated = true;
}
-void set_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag(){
+void set_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag(void){
is_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_updated = true;
}
// Set update flags for inputs interfaces with matching outputs
-void set_update_flags_matching_unused(){
+void set_update_flags_matching_unused(void){
is_prj_second_unused_updated = true;
}
-void set_update_flags_matching_foo(){
+void set_update_flags_matching_foo(void){
is_prj_second_foo_updated = true;
}
-void set_update_flags_matching_system_output(){
+void set_update_flags_matching_system_output(void){
is_prj_second_system_output_updated = true;
is_prj_third_system_output_updated = true;
}
-void set_update_flags_matching_input_64_to_sec(){
+void set_update_flags_matching_input_64_to_sec(void){
is_prj_second_input_64_to_sec_updated = true;
}
-void set_update_flags_matching_test_update_no_over(){
+void set_update_flags_matching_test_update_no_over(void){
is_prj_second_test_update_no_over_updated = true;
}
-void set_update_flags_matching_test_update_no_over_64(){
+void set_update_flags_matching_test_update_no_over_64(void){
is_prj_second_test_update_no_over_64_updated = true;
}
-void set_update_flags_matching_out_with_reliab(){
+void set_update_flags_matching_out_with_reliab(void){
is_prj_second_out_with_reliab_updated = true;
}
-void set_update_flags_matching_input_32_to_second(){
+void set_update_flags_matching_input_32_to_second(void){
is_prj_second_input_32_to_second_updated = true;
}
-void set_update_flags_matching_input_int32_to_second(){
+void set_update_flags_matching_input_int32_to_second(void){
is_prj_second_input_int32_to_second_updated = true;
}
// Clear update flags for inputs interfaces
-void clear_prj_system_input_is_updated_flag(){
+void clear_prj_system_input_is_updated_flag(void){
is_prj_system_input_updated = false;
}
-void clear_prj_model_input_is_updated_flag(){
+void clear_prj_model_input_is_updated_flag(void){
is_prj_model_input_updated = false;
}
-void clear_prj_input_64_is_updated_flag(){
+void clear_prj_input_64_is_updated_flag(void){
is_prj_input_64_updated = false;
}
-void clear_prj_input_with_reliab_is_updated_flag(){
+void clear_prj_input_with_reliab_is_updated_flag(void){
is_prj_input_with_reliab_updated = false;
}
-void clear_prj_input_64_with_reliab_is_updated_flag(){
+void clear_prj_input_64_with_reliab_is_updated_flag(void){
is_prj_input_64_with_reliab_updated = false;
}
-void clear_prj_input_32_is_updated_flag(){
+void clear_prj_input_32_is_updated_flag(void){
is_prj_input_32_updated = false;
}
-void clear_prj_input_int32_is_updated_flag(){
+void clear_prj_input_int32_is_updated_flag(void){
is_prj_input_int32_updated = false;
}
-void clear_prj_second_unused_is_updated_flag(){
+void clear_prj_second_unused_is_updated_flag(void){
is_prj_second_unused_updated = false;
}
-void clear_prj_second_foo_is_updated_flag(){
+void clear_prj_second_foo_is_updated_flag(void){
is_prj_second_foo_updated = false;
}
-void clear_prj_second_bar_is_updated_flag(){
+void clear_prj_second_bar_is_updated_flag(void){
is_prj_second_bar_updated = false;
}
-void clear_prj_second_system_output_is_updated_flag(){
+void clear_prj_second_system_output_is_updated_flag(void){
is_prj_second_system_output_updated = false;
}
-void clear_prj_second_input_64_to_sec_is_updated_flag(){
+void clear_prj_second_input_64_to_sec_is_updated_flag(void){
is_prj_second_input_64_to_sec_updated = false;
}
-void clear_prj_second_test_update_no_over_is_updated_flag(){
+void clear_prj_second_test_update_no_over_is_updated_flag(void){
is_prj_second_test_update_no_over_updated = false;
}
-void clear_prj_second_test_update_no_over_64_is_updated_flag(){
+void clear_prj_second_test_update_no_over_64_is_updated_flag(void){
is_prj_second_test_update_no_over_64_updated = false;
}
-void clear_prj_second_out_with_reliab_is_updated_flag(){
+void clear_prj_second_out_with_reliab_is_updated_flag(void){
is_prj_second_out_with_reliab_updated = false;
}
-void clear_prj_second_input_32_to_second_is_updated_flag(){
+void clear_prj_second_input_32_to_second_is_updated_flag(void){
is_prj_second_input_32_to_second_updated = false;
}
-void clear_prj_second_input_int32_to_second_is_updated_flag(){
+void clear_prj_second_input_int32_to_second_is_updated_flag(void){
is_prj_second_input_int32_to_second_updated = false;
}
-void clear_prj_third_system_output_is_updated_flag(){
+void clear_prj_third_system_output_is_updated_flag(void){
is_prj_third_system_output_updated = false;
}
-void clear_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag(){
+void clear_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag(void){
is_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_updated = false;
}
-void pal_init_data_dictionary() {
+void pal_init_data_dictionary(void) {
sysvar_handle_system_input = pal_sysvar_init(&sysvar_system_input);
sysvar_handle_system_output = pal_sysvar_init(&sysvar_system_output);
sysvar_handle_model_input = pal_sysvar_init(&sysvar_model_input);
@@ -793,7 +793,7 @@ void pal_init_data_dictionary() {
sysvar_handle_dummy_to_prevent_empty_mock_pal_dbg = pal_sysvar_init(&sysvar_dummy_to_prevent_empty_mock_pal_dbg);
}
-void pal_load_mocked_inputs() {
+void pal_load_mocked_inputs(void) {
pal_sysvar_write_int32_t(sysvar_handle_system_input, mckc_system_input);
set_prj_system_input_is_updated_flag();
pal_sysvar_write_int32_t(sysvar_handle_model_input, mckc_model_input);
diff --git a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_data_dictionary.h b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_data_dictionary.h
index 5cc2119..4ade231 100644
--- a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_data_dictionary.h
+++ b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_data_dictionary.h
@@ -107,349 +107,349 @@ extern i_safe_sig_cnd_t out_with_reliab_rel;
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_system_input_is_updated_flag();
+bool get_prj_system_input_is_updated_flag(void);
/** @brief Get the value of is_prj_model_input_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_model_input_is_updated_flag();
+bool get_prj_model_input_is_updated_flag(void);
/** @brief Get the value of is_prj_input_64_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_input_64_is_updated_flag();
+bool get_prj_input_64_is_updated_flag(void);
/** @brief Get the value of is_prj_input_with_reliab_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_input_with_reliab_is_updated_flag();
+bool get_prj_input_with_reliab_is_updated_flag(void);
/** @brief Get the value of is_prj_input_64_with_reliab_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_input_64_with_reliab_is_updated_flag();
+bool get_prj_input_64_with_reliab_is_updated_flag(void);
/** @brief Get the value of is_prj_input_32_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_input_32_is_updated_flag();
+bool get_prj_input_32_is_updated_flag(void);
/** @brief Get the value of is_prj_input_int32_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_input_int32_is_updated_flag();
+bool get_prj_input_int32_is_updated_flag(void);
/** @brief Get the value of is_prj_second_unused_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_second_unused_is_updated_flag();
+bool get_prj_second_unused_is_updated_flag(void);
/** @brief Get the value of is_prj_second_foo_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_second_foo_is_updated_flag();
+bool get_prj_second_foo_is_updated_flag(void);
/** @brief Get the value of is_prj_second_bar_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_second_bar_is_updated_flag();
+bool get_prj_second_bar_is_updated_flag(void);
/** @brief Get the value of is_prj_second_system_output_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_second_system_output_is_updated_flag();
+bool get_prj_second_system_output_is_updated_flag(void);
/** @brief Get the value of is_prj_second_input_64_to_sec_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_second_input_64_to_sec_is_updated_flag();
+bool get_prj_second_input_64_to_sec_is_updated_flag(void);
/** @brief Get the value of is_prj_second_test_update_no_over_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_second_test_update_no_over_is_updated_flag();
+bool get_prj_second_test_update_no_over_is_updated_flag(void);
/** @brief Get the value of is_prj_second_test_update_no_over_64_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_second_test_update_no_over_64_is_updated_flag();
+bool get_prj_second_test_update_no_over_64_is_updated_flag(void);
/** @brief Get the value of is_prj_second_out_with_reliab_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_second_out_with_reliab_is_updated_flag();
+bool get_prj_second_out_with_reliab_is_updated_flag(void);
/** @brief Get the value of is_prj_second_input_32_to_second_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_second_input_32_to_second_is_updated_flag();
+bool get_prj_second_input_32_to_second_is_updated_flag(void);
/** @brief Get the value of is_prj_second_input_int32_to_second_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_second_input_int32_to_second_is_updated_flag();
+bool get_prj_second_input_int32_to_second_is_updated_flag(void);
/** @brief Get the value of is_prj_third_system_output_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_prj_third_system_output_is_updated_flag();
+bool get_prj_third_system_output_is_updated_flag(void);
/** @brief Get the value of is_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_updated
* @return boolean value stored in the variable.
* @note This is an automatically generated function.
*/
-bool get_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag();
+bool get_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag(void);
/** @brief Set is_prj_system_input_updated
* to true.
* @note This is an automatically generated function.
*/
-void set_prj_system_input_is_updated_flag();
+void set_prj_system_input_is_updated_flag(void);
/** @brief Set is_prj_model_input_updated
* to true.
* @note This is an automatically generated function.
*/
-void set_prj_model_input_is_updated_flag();
+void set_prj_model_input_is_updated_flag(void);
/** @brief Set is_prj_input_64_updated
* to true.
* @note This is an automatically generated function.
*/
-void set_prj_input_64_is_updated_flag();
+void set_prj_input_64_is_updated_flag(void);
/** @brief Set is_prj_input_with_reliab_updated
* to true.
* @note This is an automatically generated function.
*/
-void set_prj_input_with_reliab_is_updated_flag();
+void set_prj_input_with_reliab_is_updated_flag(void);
/** @brief Set is_prj_input_64_with_reliab_updated
* to true.
* @note This is an automatically generated function.
*/
-void set_prj_input_64_with_reliab_is_updated_flag();
+void set_prj_input_64_with_reliab_is_updated_flag(void);
/** @brief Set is_prj_input_32_updated
* to true.
* @note This is an automatically generated function.
*/
-void set_prj_input_32_is_updated_flag();
+void set_prj_input_32_is_updated_flag(void);
/** @brief Set is_prj_input_int32_updated
* to true.
* @note This is an automatically generated function.
*/
-void set_prj_input_int32_is_updated_flag();
+void set_prj_input_int32_is_updated_flag(void);
/** @brief Set is_prj_second_bar_updated
* to true.
* @note This is an automatically generated function.
*/
-void set_prj_second_bar_is_updated_flag();
+void set_prj_second_bar_is_updated_flag(void);
/** @brief Set is_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_updated
* to true.
* @note This is an automatically generated function.
*/
-void set_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag();
+void set_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag(void);
/** @brief Set to true all the input interfaces flags
* matching with system_output. This function is
* called everytime the output is overwritten.
* @note This is an automatically generated function.
*/
-void set_update_flags_matching_system_output();
+void set_update_flags_matching_system_output(void);
/** @brief Set to true all the input interfaces flags
* matching with foo. This function is
* called everytime the output is overwritten.
* @note This is an automatically generated function.
*/
-void set_update_flags_matching_foo();
+void set_update_flags_matching_foo(void);
/** @brief Set to true all the input interfaces flags
* matching with test_update_no_over. This function is
* called everytime the output is overwritten.
* @note This is an automatically generated function.
*/
-void set_update_flags_matching_test_update_no_over();
+void set_update_flags_matching_test_update_no_over(void);
/** @brief Set to true all the input interfaces flags
* matching with test_update_no_over_64. This function is
* called everytime the output is overwritten.
* @note This is an automatically generated function.
*/
-void set_update_flags_matching_test_update_no_over_64();
+void set_update_flags_matching_test_update_no_over_64(void);
/** @brief Set to true all the input interfaces flags
* matching with input_64_to_sec. This function is
* called everytime the output is overwritten.
* @note This is an automatically generated function.
*/
-void set_update_flags_matching_input_64_to_sec();
+void set_update_flags_matching_input_64_to_sec(void);
/** @brief Set to true all the input interfaces flags
* matching with out_with_reliab. This function is
* called everytime the output is overwritten.
* @note This is an automatically generated function.
*/
-void set_update_flags_matching_out_with_reliab();
+void set_update_flags_matching_out_with_reliab(void);
/** @brief Set to true all the input interfaces flags
* matching with input_32_to_second. This function is
* called everytime the output is overwritten.
* @note This is an automatically generated function.
*/
-void set_update_flags_matching_input_32_to_second();
+void set_update_flags_matching_input_32_to_second(void);
/** @brief Set to true all the input interfaces flags
* matching with input_int32_to_second. This function is
* called everytime the output is overwritten.
* @note This is an automatically generated function.
*/
-void set_update_flags_matching_input_int32_to_second();
+void set_update_flags_matching_input_int32_to_second(void);
/** @brief Set to true all the input interfaces flags
* matching with unused. This function is
* called everytime the output is overwritten.
* @note This is an automatically generated function.
*/
-void set_update_flags_matching_unused();
+void set_update_flags_matching_unused(void);
/** @brief Set is_prj_system_input_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_system_input_is_updated_flag();
+void clear_prj_system_input_is_updated_flag(void);
/** @brief Set is_prj_model_input_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_model_input_is_updated_flag();
+void clear_prj_model_input_is_updated_flag(void);
/** @brief Set is_prj_input_64_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_input_64_is_updated_flag();
+void clear_prj_input_64_is_updated_flag(void);
/** @brief Set is_prj_input_with_reliab_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_input_with_reliab_is_updated_flag();
+void clear_prj_input_with_reliab_is_updated_flag(void);
/** @brief Set is_prj_input_64_with_reliab_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_input_64_with_reliab_is_updated_flag();
+void clear_prj_input_64_with_reliab_is_updated_flag(void);
/** @brief Set is_prj_input_32_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_input_32_is_updated_flag();
+void clear_prj_input_32_is_updated_flag(void);
/** @brief Set is_prj_input_int32_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_input_int32_is_updated_flag();
+void clear_prj_input_int32_is_updated_flag(void);
/** @brief Set is_prj_second_unused_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_second_unused_is_updated_flag();
+void clear_prj_second_unused_is_updated_flag(void);
/** @brief Set is_prj_second_foo_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_second_foo_is_updated_flag();
+void clear_prj_second_foo_is_updated_flag(void);
/** @brief Set is_prj_second_bar_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_second_bar_is_updated_flag();
+void clear_prj_second_bar_is_updated_flag(void);
/** @brief Set is_prj_second_system_output_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_second_system_output_is_updated_flag();
+void clear_prj_second_system_output_is_updated_flag(void);
/** @brief Set is_prj_second_input_64_to_sec_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_second_input_64_to_sec_is_updated_flag();
+void clear_prj_second_input_64_to_sec_is_updated_flag(void);
/** @brief Set is_prj_second_test_update_no_over_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_second_test_update_no_over_is_updated_flag();
+void clear_prj_second_test_update_no_over_is_updated_flag(void);
/** @brief Set is_prj_second_test_update_no_over_64_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_second_test_update_no_over_64_is_updated_flag();
+void clear_prj_second_test_update_no_over_64_is_updated_flag(void);
/** @brief Set is_prj_second_out_with_reliab_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_second_out_with_reliab_is_updated_flag();
+void clear_prj_second_out_with_reliab_is_updated_flag(void);
/** @brief Set is_prj_second_input_32_to_second_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_second_input_32_to_second_is_updated_flag();
+void clear_prj_second_input_32_to_second_is_updated_flag(void);
/** @brief Set is_prj_second_input_int32_to_second_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_second_input_int32_to_second_is_updated_flag();
+void clear_prj_second_input_int32_to_second_is_updated_flag(void);
/** @brief Set is_prj_third_system_output_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_prj_third_system_output_is_updated_flag();
+void clear_prj_third_system_output_is_updated_flag(void);
/** @brief Set is_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_updated
* to false.
* @note This is an automatically generated function.
*/
-void clear_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag();
+void clear_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag(void);
-void pal_init_data_dictionary();
-void pal_load_mocked_inputs();
+void pal_init_data_dictionary(void);
+void pal_load_mocked_inputs(void);
#endif // PAL_DATA_DICTIONARY_H_
diff --git a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_dbg_data_dictionary.c b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_dbg_data_dictionary.c
index afa60f6..03a2e16 100644
--- a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_dbg_data_dictionary.c
+++ b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_dbg_data_dictionary.c
@@ -25,21 +25,21 @@ palvar_read_status_t palvar_read_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg(uin
// Interface outputs
-void pal_dbg_load_data_dict_variables() {
+void pal_dbg_load_data_dict_variables(void) {
}
-void pal_dbg_write_data_dict_variables() {
+void pal_dbg_write_data_dict_variables(void) {
}
// Override functions
// Inputs update check functions
-bool pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated(){
+bool pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated(void){
return get_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated_flag();
}
// Inputs get_errors functions
-palvar_read_errors_t palvar_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_get_errors(){
+palvar_read_errors_t palvar_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_get_errors(void){
return sysvar_handle_dummy_to_prevent_empty_mock_pal_dbg->errors;
}
diff --git a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_dbg_data_dictionary.h b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_dbg_data_dictionary.h
index 6407635..5768f9c 100644
--- a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_dbg_data_dictionary.h
+++ b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/pal_dbg_data_dictionary.h
@@ -62,7 +62,7 @@ extern PAL_CAL float palc_dbg_pwm_offset;
* @return true if the Interface input is updated, otherwise false.
* @note This is an automatically generated function.
*/
-bool pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated();
+bool pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated(void);
// Inputs get_errors functions
@@ -70,19 +70,19 @@ bool pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_is_updated();
* @return palvar_read_errors_t
* @note This is an automatically generated function.
*/
-palvar_read_errors_t palvar_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_get_errors();
+palvar_read_errors_t palvar_pal_dbg_dummy_to_prevent_empty_mock_pal_dbg_get_errors(void);
/** @brief Loads all the calibratables and inputs from their associated system
* variables, based on the data dictionary.
* @note This is an automatically generated function.
*/
-void pal_dbg_load_data_dict_variables();
+void pal_dbg_load_data_dict_variables(void);
/** @brief Writes all the values of the variables of displayables and outputs to
* their associated system variables, based on the data dictionary.
* @note This is an automatically generated function.
*/
-void pal_dbg_write_data_dict_variables();
+void pal_dbg_write_data_dict_variables(void);
#endif // PAL_DBG_DATA_DICTIONARY_H_
diff --git a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/prj_data_dictionary.c b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/prj_data_dictionary.c
index ce1348f..5fc5a25 100644
--- a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/prj_data_dictionary.c
+++ b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/prj_data_dictionary.c
@@ -339,38 +339,38 @@ palvar_write_status_t palvar_write_prj_input_int32_to_second(int32_t value) {
}
-void prj_load_data_dict_variables() {
+void prj_load_data_dict_variables(void) {
}
-void prj_write_data_dict_variables() {
+void prj_write_data_dict_variables(void) {
}
// Override functions
-void prj_override_displayable1() {
+void prj_override_displayable1(void) {
if (true == prjc_eo_displayable1) {
prj_displayable1 = prjc_vo_displayable1;
}
}
-void prj_override_displayable_transmission_status() {
+void prj_override_displayable_transmission_status(void) {
if (true == prjc_eo_displayable_transmission_status) {
prj_displayable_transmission_status = prjc_vo_displayable_transmission_status;
}
}
-void prj_override_displayable_write_requests() {
+void prj_override_displayable_write_requests(void) {
if (true == prjc_eo_displayable_write_requests) {
prj_displayable_write_requests = prjc_vo_displayable_write_requests;
}
}
-void prj_override_displayable_overwrite_requests() {
+void prj_override_displayable_overwrite_requests(void) {
if (true == prjc_eo_displayable_overwrite_requests) {
prj_displayable_overwrite_requests = prjc_vo_displayable_overwrite_requests;
}
}
-void prj_override_displayable_tx_acks() {
+void prj_override_displayable_tx_acks(void) {
if (true == prjc_eo_displayable_tx_acks) {
prj_displayable_tx_acks = prjc_vo_displayable_tx_acks;
}
@@ -378,62 +378,62 @@ void prj_override_displayable_tx_acks() {
}
// Inputs update check functions
-bool prj_system_input_is_updated(){
+bool prj_system_input_is_updated(void){
return get_prj_system_input_is_updated_flag();
}
-bool prj_model_input_is_updated(){
+bool prj_model_input_is_updated(void){
return get_prj_model_input_is_updated_flag();
}
-bool prj_input_64_is_updated(){
+bool prj_input_64_is_updated(void){
return get_prj_input_64_is_updated_flag();
}
-bool prj_input_with_reliab_is_updated(){
+bool prj_input_with_reliab_is_updated(void){
return get_prj_input_with_reliab_is_updated_flag();
}
-bool prj_input_64_with_reliab_is_updated(){
+bool prj_input_64_with_reliab_is_updated(void){
return get_prj_input_64_with_reliab_is_updated_flag();
}
-bool prj_input_32_is_updated(){
+bool prj_input_32_is_updated(void){
return get_prj_input_32_is_updated_flag();
}
-bool prj_input_int32_is_updated(){
+bool prj_input_int32_is_updated(void){
return get_prj_input_int32_is_updated_flag();
}
// Inputs get_errors functions
-palvar_read_errors_t palvar_prj_system_input_get_errors(){
+palvar_read_errors_t palvar_prj_system_input_get_errors(void){
return sysvar_handle_system_input->errors;
}
-palvar_read_errors_t palvar_prj_model_input_get_errors(){
+palvar_read_errors_t palvar_prj_model_input_get_errors(void){
return sysvar_handle_model_input->errors;
}
-palvar_read_errors_t palvar_prj_input_64_get_errors(){
+palvar_read_errors_t palvar_prj_input_64_get_errors(void){
return (sysvar_handle_input_64_1->errors | sysvar_handle_input_64_2->errors |
sysvar_handle_input_64_3->errors | sysvar_handle_input_64_4->errors);
}
-palvar_read_errors_t palvar_prj_input_with_reliab_get_errors(){
+palvar_read_errors_t palvar_prj_input_with_reliab_get_errors(void){
return sysvar_handle_input_with_reliab->errors;
}
-palvar_read_errors_t palvar_prj_input_64_with_reliab_get_errors(){
+palvar_read_errors_t palvar_prj_input_64_with_reliab_get_errors(void){
return (sysvar_handle_input_64_with_reliab_1->errors | sysvar_handle_input_64_with_reliab_2->errors |
sysvar_handle_input_64_with_reliab_3->errors | sysvar_handle_input_64_with_reliab_4->errors);
}
-palvar_read_errors_t palvar_prj_input_32_get_errors(){
+palvar_read_errors_t palvar_prj_input_32_get_errors(void){
return sysvar_handle_input_32->errors;
}
-palvar_read_errors_t palvar_prj_input_int32_get_errors(){
+palvar_read_errors_t palvar_prj_input_int32_get_errors(void){
return sysvar_handle_input_int32->errors;
}
diff --git a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/prj_data_dictionary.h b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/prj_data_dictionary.h
index a536d73..26f309c 100644
--- a/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/prj_data_dictionary.h
+++ b/test/unit/python/code_gen/pal/paldatadict/resources/expected_output/PIINNOVO_M560_PRIMARY/prj_data_dictionary.h
@@ -250,54 +250,54 @@ extern PAL_CAL bool prjc_eo_input_int32_to_second;
extern PAL_CAL int32_t prjc_vo_input_int32_to_second;
// Override functions
-void prj_override_displayable1();
-void prj_override_displayable_transmission_status();
-void prj_override_displayable_write_requests();
-void prj_override_displayable_overwrite_requests();
-void prj_override_displayable_tx_acks();
+void prj_override_displayable1(void);
+void prj_override_displayable_transmission_status(void);
+void prj_override_displayable_write_requests(void);
+void prj_override_displayable_overwrite_requests(void);
+void prj_override_displayable_tx_acks(void);
// Inputs update check functions
/** @brief Check if Interface input system_input has been updated.
* @return true if the Interface input is updated, otherwise false.
* @note This is an automatically generated function.
*/
-bool prj_system_input_is_updated();
+bool prj_system_input_is_updated(void);
/** @brief Check if Interface input model_input has been updated.
* @return true if the Interface input is updated, otherwise false.
* @note This is an automatically generated function.
*/
-bool prj_model_input_is_updated();
+bool prj_model_input_is_updated(void);
/** @brief Check if Interface input input_64 has been updated.
* @return true if the Interface input is updated, otherwise false.
* @note This is an automatically generated function.
*/
-bool prj_input_64_is_updated();
+bool prj_input_64_is_updated(void);
/** @brief Check if Interface input input_with_reliab has been updated.
* @return true if the Interface input is updated, otherwise false.
* @note This is an automatically generated function.
*/
-bool prj_input_with_reliab_is_updated();
+bool prj_input_with_reliab_is_updated(void);
/** @brief Check if Interface input input_64_with_reliab has been updated.
* @return true if the Interface input is updated, otherwise false.
* @note This is an automatically generated function.
*/
-bool prj_input_64_with_reliab_is_updated();
+bool prj_input_64_with_reliab_is_updated(void);
/** @brief Check if Interface input input_32 has been updated.
* @return true if the Interface input is updated, otherwise false.
* @note This is an automatically generated function.
*/
-bool prj_input_32_is_updated();
+bool prj_input_32_is_updated(void);
/** @brief Check if Interface input input_int32 has been updated.
* @return true if the Interface input is updated, otherwise false.
* @note This is an automatically generated function.
*/
-bool prj_input_int32_is_updated();
+bool prj_input_int32_is_updated(void);
// Inputs get_errors functions
@@ -305,55 +305,55 @@ bool prj_input_int32_is_updated();
* @return palvar_read_errors_t
* @note This is an automatically generated function.
*/
-palvar_read_errors_t palvar_prj_system_input_get_errors();
+palvar_read_errors_t palvar_prj_system_input_get_errors(void);
/** @brief Retrieve the errors for Interface input model_input.
* @return palvar_read_errors_t
* @note This is an automatically generated function.
*/
-palvar_read_errors_t palvar_prj_model_input_get_errors();
+palvar_read_errors_t palvar_prj_model_input_get_errors(void);
/** @brief Retrieve the errors for Interface input input_64.
* @return palvar_read_errors_t
* @note This is an automatically generated function.