-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakefile
More file actions
2626 lines (2608 loc) · 181 KB
/
Copy pathmakefile
File metadata and controls
2626 lines (2608 loc) · 181 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
#
# Makefile to build driverlib and all examples
#
include imports.mak
# debug, release
PROFILE?=debug
all:
$(MAKE) -C . -f makefile driverlib PROFILE=$(PROFILE)
$(MAKE) -C . -f makefile examples-all PROFILE=$(PROFILE)
clean:
$(MAKE) -C . -f makefile driverlib-clean PROFILE=$(PROFILE)
$(MAKE) -C . -f makefile examples-clean-all PROFILE=$(PROFILE)
driverlib:
$(MAKE) -C source/driverlib -f makefile all PROFILE=$(PROFILE)
driverlib-clean:
$(MAKE) -C source/driverlib -f makefile clean PROFILE=$(PROFILE)
examples-all:
$(MAKE) -C . -f makefile examples PROFILE=$(PROFILE)
examples-clean-all:
$(MAKE) -C . -f makefile examples-clean PROFILE=$(PROFILE)
BUILD_EXAMPLE_ALL =
BUILD_EXAMPLE_ALL += acc_data_capture_with_preview
BUILD_EXAMPLE_ALL += arc_fault
BUILD_EXAMPLE_ALL += blower_imbalance
BUILD_EXAMPLE_ALL += fan_blade_anomalydetection
BUILD_EXAMPLE_ALL += fan_blade_anomalydetection_ondevice_learning
BUILD_EXAMPLE_ALL += forecasting_pmsm_rotor_temp
BUILD_EXAMPLE_ALL += generic_timeseries_anomalydetection
BUILD_EXAMPLE_ALL += generic_timeseries_classification
BUILD_EXAMPLE_ALL += generic_timeseries_forecasting
BUILD_EXAMPLE_ALL += generic_timeseries_regression
BUILD_EXAMPLE_ALL += hvac_indoor_temp_forecast
BUILD_EXAMPLE_ALL += motor_fault
BUILD_EXAMPLE_ALL += temp_data_capture
BUILD_EXAMPLE_ALL += torque_measurement
BUILD_EXAMPLE_ALL += washing_machine_load_weighing
BUILD_EXAMPLE_ALL += adc_academy_lab
BUILD_EXAMPLE_ALL += adc_ex1_soc_software
BUILD_EXAMPLE_ALL += adc_ex2_soc_epwm
BUILD_EXAMPLE_ALL += adc_ex3_temp_sensor
BUILD_EXAMPLE_ALL += adc_ex4_software_sync
BUILD_EXAMPLE_ALL += adc_ex5_soc_continuous
BUILD_EXAMPLE_ALL += adc_ex6_continuous_dma
BUILD_EXAMPLE_ALL += adc_ex7_ppb_offset
BUILD_EXAMPLE_ALL += adc_ex8_ppb_limits
BUILD_EXAMPLE_ALL += adc_ex9_ppb_delay
BUILD_EXAMPLE_ALL += adc_ex10_multiple_soc_epwm
BUILD_EXAMPLE_ALL += adc_ex11_burst_mode_epwm
BUILD_EXAMPLE_ALL += adc_ex12_burst_mode_oversampling
BUILD_EXAMPLE_ALL += adc_ex13_soc_oversampling
BUILD_EXAMPLE_ALL += adc_ex14_ppb_pwm_trip
BUILD_EXAMPLE_ALL += adc_ex15_trigger_repeater_oversampling
BUILD_EXAMPLE_ALL += adc_ex16_trigger_repeater_undersampling
BUILD_EXAMPLE_ALL += adc_ex17_safety_checker
BUILD_EXAMPLE_ALL += adc_ex18_fast_oversampling
BUILD_EXAMPLE_ALL += clb_academy_lab
BUILD_EXAMPLE_ALL += clb_ecap_academy_lab
BUILD_EXAMPLE_ALL += clb_ex1_combinatorial_logic
BUILD_EXAMPLE_ALL += clb_ex2_gpio_input_filter
BUILD_EXAMPLE_ALL += clb_ex3_auxiliary_pwm
BUILD_EXAMPLE_ALL += clb_ex4_pwm_protection
BUILD_EXAMPLE_ALL += cmpss_ex1_asynch
BUILD_EXAMPLE_ALL += cmpss_ex2_digital_filter
BUILD_EXAMPLE_ALL += buffdac_ex1_enable
BUILD_EXAMPLE_ALL += buffdac_ex2_random
BUILD_EXAMPLE_ALL += dcc_ex1_single_shot_verification
BUILD_EXAMPLE_ALL += dcc_ex2_single_shot_measurement
BUILD_EXAMPLE_ALL += dcc_ex3_continuous_monitoring_of_clock
BUILD_EXAMPLE_ALL += dlt_ex1_datalog_tag
BUILD_EXAMPLE_ALL += dlt_ex2_dma_fsi_export
BUILD_EXAMPLE_ALL += dlt_ex3_datalog_erad
BUILD_EXAMPLE_ALL += ecap_academy_lab
BUILD_EXAMPLE_ALL += ecap_ex1_apwm
BUILD_EXAMPLE_ALL += ecap_ex2_capture_pwm
BUILD_EXAMPLE_ALL += ecap_ex3_apwm_phase_shift
BUILD_EXAMPLE_ALL += ecap_ex4_dma_transfer
BUILD_EXAMPLE_ALL += emif_ex1_16bit_sdram_syscfg
BUILD_EXAMPLE_ALL += emif_ex2_16bit_asram_syscfg
BUILD_EXAMPLE_ALL += emif_ex3_32bit_sdram_syscfg
BUILD_EXAMPLE_ALL += empty_driverlib_project
BUILD_EXAMPLE_ALL += emulate_device_ex1_f29p58x
BUILD_EXAMPLE_ALL += emulate_device_ex2_f29p32x
BUILD_EXAMPLE_ALL += emulate_device_ex3_f29p32x_access_error
BUILD_EXAMPLE_ALL += epg_ex1_generate_clocks
BUILD_EXAMPLE_ALL += epg_ex2_generate_two_offset_clocks
BUILD_EXAMPLE_ALL += epg_ex3_generate_two_offset_clocks_with_siggen
BUILD_EXAMPLE_ALL += epg_ex4_generate_serial_data
BUILD_EXAMPLE_ALL += epg_ex5_generate_serial_data_shift_mode
BUILD_EXAMPLE_ALL += epwm_ex1_trip_zone
BUILD_EXAMPLE_ALL += epwm_ex2_updown_aq
BUILD_EXAMPLE_ALL += epwm_ex3_synchronization
BUILD_EXAMPLE_ALL += epwm_ex4_digital_compare
BUILD_EXAMPLE_ALL += epwm_ex5_digital_compare_event_filter
BUILD_EXAMPLE_ALL += epwm_ex6_valley_switching
BUILD_EXAMPLE_ALL += epwm_ex7_edge_filter
BUILD_EXAMPLE_ALL += epwm_ex8_deadband
BUILD_EXAMPLE_ALL += epwm_ex9_dma
BUILD_EXAMPLE_ALL += epwm_ex10_chopper
BUILD_EXAMPLE_ALL += epwm_ex11_configure_signal
BUILD_EXAMPLE_ALL += epwm_ex12_monoshot_mode
BUILD_EXAMPLE_ALL += epwm_ex13_up_aq
BUILD_EXAMPLE_ALL += epwm_ex14_global_load
BUILD_EXAMPLE_ALL += epwm_ex15_xcmp_multiple_edges
BUILD_EXAMPLE_ALL += epwm_ex16_event_detection
BUILD_EXAMPLE_ALL += eqep_academy_lab
BUILD_EXAMPLE_ALL += eqep_ex2_freq_cal_interrupt
BUILD_EXAMPLE_ALL += eqep_ex5_speed_dir_motor
BUILD_EXAMPLE_ALL += erad_ex1_profile_function_no_syscfg
BUILD_EXAMPLE_ALL += erad_ex2_profile_function_syscfg
BUILD_EXAMPLE_ALL += erad_ex3_bus_monitor_no_syscfg
BUILD_EXAMPLE_ALL += erad_ex4_bus_monitor_syscfg
BUILD_EXAMPLE_ALL += erad_ex5_stack_overflow_detect_no_syscfg
BUILD_EXAMPLE_ALL += erad_ex6_stack_overflow_detect_syscfg
BUILD_EXAMPLE_ALL += erad_ex7_free_running_counter_syscfg
BUILD_EXAMPLE_ALL += erad_ex8_gpio_trigger_nmi
BUILD_EXAMPLE_ALL += erad_ex1_profile_interrupts
BUILD_EXAMPLE_ALL += erad_ex2_stack_overflow
BUILD_EXAMPLE_ALL += esm_ex1_tmuromparity_test
BUILD_EXAMPLE_ALL += esm_ex2_safetyaggregator
BUILD_EXAMPLE_ALL += F29H85x_EEPROM
BUILD_EXAMPLE_ALL += F29H85x_EEPROM_PingPong
BUILD_EXAMPLE_ALL += flash_bankmgmt_program_builtin_api
BUILD_EXAMPLE_ALL += flash_bankmode_fota
BUILD_EXAMPLE_ALL += flash_mode0_128_program
BUILD_EXAMPLE_ALL += flash_mode0_512_program
BUILD_EXAMPLE_ALL += flash_mode0_seccfg_program
BUILD_EXAMPLE_ALL += flash_mode1_128_program
BUILD_EXAMPLE_ALL += flash_mode1_512_program
BUILD_EXAMPLE_ALL += flash_write_erase_protection
BUILD_EXAMPLE_ALL += jtag_flash_secure_kernel
BUILD_EXAMPLE_ALL += fsi_academy_lab
BUILD_EXAMPLE_ALL += fsi_ex1_loopback_cpucontrol
BUILD_EXAMPLE_ALL += fsi_ex2_periodic_frame
BUILD_EXAMPLE_ALL += fsi_ex3_command_response_initiator
BUILD_EXAMPLE_ALL += fsi_ex3_command_response_target
BUILD_EXAMPLE_ALL += gpio_ex1_toggle
BUILD_EXAMPLE_ALL += gpio_ex2_interrupt
BUILD_EXAMPLE_ALL += gpio_ex3_aio_external_interrupt
BUILD_EXAMPLE_ALL += hrcap_ex1_capture
BUILD_EXAMPLE_ALL += hrpwm_ex1_duty_sfo
BUILD_EXAMPLE_ALL += hrpwm_ex3_prd_updown_sfo
BUILD_EXAMPLE_ALL += hrpwm_ex8_xcmp_multiple_edges
BUILD_EXAMPLE_ALL += i2c_ex1_loopback
BUILD_EXAMPLE_ALL += i2c_ex2_eeprom
BUILD_EXAMPLE_ALL += i2c_ex3_external_loopback
BUILD_EXAMPLE_ALL += i2c_ex7_clock_stretching_controller_tx
BUILD_EXAMPLE_ALL += i2c_ex7_clock_stretching_target_rx
BUILD_EXAMPLE_ALL += interrupt_ex1_int_rtint_latency
BUILD_EXAMPLE_ALL += interrupt_ex2_int_rtint_nesting
BUILD_EXAMPLE_ALL += interrupt_ex3_rtint_nesting_limit
BUILD_EXAMPLE_ALL += launchxl_ex1_led_blinky
BUILD_EXAMPLE_ALL += led_ex1_blinky
BUILD_EXAMPLE_ALL += lin_ex1_loopback_interrupts
BUILD_EXAMPLE_ALL += lin_ex2_sci_loopback
BUILD_EXAMPLE_ALL += lin_ex3_sci_dma
BUILD_EXAMPLE_ALL += lin_ex4_loopback_polling
BUILD_EXAMPLE_ALL += lin_ex5_sci_dma_single_buffer
BUILD_EXAMPLE_ALL += lpm_ex1_idlewake_gpio
BUILD_EXAMPLE_ALL += lpm_ex2_idlewake_watchdog
BUILD_EXAMPLE_ALL += lpm_ex3_standbywake_gpio
BUILD_EXAMPLE_ALL += lpm_ex4_standbywake_watchdog
BUILD_EXAMPLE_ALL += mcan_ex1_loopback_interrupts
BUILD_EXAMPLE_ALL += mcan_ex2_loopback_polling
BUILD_EXAMPLE_ALL += mcan_ex3_loopback_interrupts_fifo
BUILD_EXAMPLE_ALL += mcan_ex4_transmit
BUILD_EXAMPLE_ALL += mcan_ex5_receive
BUILD_EXAMPLE_ALL += mcan_ex6_transmit_syscfg
BUILD_EXAMPLE_ALL += pmbus_ex1_controller_i2c_mode
BUILD_EXAMPLE_ALL += pmbus_ex2_target_i2c_mode
BUILD_EXAMPLE_ALL += rtdma_academy_lab
BUILD_EXAMPLE_ALL += rtdma_ex1_mem_transfer
BUILD_EXAMPLE_ALL += rtdma_ex2_mem_transfer_mpu
BUILD_EXAMPLE_ALL += rtdma_ex3_mem_transfer_64_bit
BUILD_EXAMPLE_ALL += rtdma_ex4_address_wrapping_adc
BUILD_EXAMPLE_ALL += sdfm_ex1_filter_sync_cpuread
BUILD_EXAMPLE_ALL += sdfm_ex4_pwm_sync_cpuread
BUILD_EXAMPLE_ALL += sent_ex1_single_sensor
BUILD_EXAMPLE_ALL += spi_ex1_loopback
BUILD_EXAMPLE_ALL += spi_ex2_loopback_fifo_interrupts
BUILD_EXAMPLE_ALL += spi_ex3_external_loopback
BUILD_EXAMPLE_ALL += spi_ex4_external_loopback_fifo_interrupts
BUILD_EXAMPLE_ALL += spi_ex5_loopback_dma
BUILD_EXAMPLE_ALL += sysctl_ex1_missing_clock_detection
BUILD_EXAMPLE_ALL += sysctl_ex2_xclkout
BUILD_EXAMPLE_ALL += system_integration_lab
BUILD_EXAMPLE_ALL += timer_academy_lab
BUILD_EXAMPLE_ALL += timer_ex1_cputimers
BUILD_EXAMPLE_ALL += timer_ex2_cputimers_syscfg
BUILD_EXAMPLE_ALL += uart_academy_lab
BUILD_EXAMPLE_ALL += uart_ex1_loopback
BUILD_EXAMPLE_ALL += uart_ex2_loopback_fifo_interrupts
BUILD_EXAMPLE_ALL += uart_ex3_loopback_dma
BUILD_EXAMPLE_ALL += uart_ex4_echoback
BUILD_EXAMPLE_ALL += wadi_ex1_pulse_width
BUILD_EXAMPLE_ALL += wadi_ex2_frequency
BUILD_EXAMPLE_ALL += wadi_ex3_phase_overlap
BUILD_EXAMPLE_ALL += wadi_ex4_dead_band
BUILD_EXAMPLE_ALL += wadi_ex5_frequency_sss
BUILD_EXAMPLE_ALL += wadi_ex6_pw_with_dma_trigger
BUILD_EXAMPLE_ALL += watchdog_ex1_service
BUILD_EXAMPLE_ALL += xbar_ex1_input_output
BUILD_EXAMPLE_ALL += xbar_ex2_output_pulse_stretch
BUILD_EXAMPLE_ALL += ClockP
BUILD_EXAMPLE_ALL += EventP
BUILD_EXAMPLE_ALL += SemaphoreP_mutex_binary
BUILD_EXAMPLE_ALL += TaskP
BUILD_EXAMPLE_ALL += DebugP_ccs_console
BUILD_EXAMPLE_ALL += HwiP_int
BUILD_EXAMPLE_ALL += HwiP_rtint
BUILD_EXAMPLE_ALL += SemaphoreP_binary
BUILD_EXAMPLE_ALL += SemaphoreP_count
BUILD_EXAMPLE_ALL += SemaphoreP_mutex
BUILD_EXAMPLE_ALL += TimerP
BUILD_EXAMPLE_ALL += control+rtos_demo
BUILD_EXAMPLE_ALL += freertos_ex1_two_tasks_syscfg
BUILD_EXAMPLE_ALL += freertos_ex2_interrupt_semaphore_syscfg
BUILD_EXAMPLE_ALL += freertos_ex3_nmi_recovery_semaphore
BUILD_EXAMPLE_ALL += freertos_ex4_nmi_recovery_supervisor_int
BUILD_EXAMPLE_ALL += freertos_port_validation_tests
BUILD_EXAMPLE_ALL += cdd_adc_example_freertos_tempsensor
BUILD_EXAMPLE_ALL += dio_example_freertos_read_write_all
BUILD_EXAMPLE_ALL += pmic_qa_watchdog_reset_tps65036xx
BUILD_EXAMPLE_ALL += pmic_qa_watchdog_reset_tps653860xx
BUILD_EXAMPLE_ALL += pmic_trigger_watchdog_reset_tps65036xx
BUILD_EXAMPLE_ALL += pmic_user_reg_cfg_tps65036xx
BUILD_EXAMPLE_ALL += pmic_user_reg_cfg_tps653860xx
BUILD_EXAMPLE_ALL += dcl_df11
BUILD_EXAMPLE_ALL += dcl_df13
BUILD_EXAMPLE_ALL += dcl_df22
BUILD_EXAMPLE_ALL += dcl_df23
BUILD_EXAMPLE_ALL += dcl_gsm
BUILD_EXAMPLE_ALL += dcl_nlpid
BUILD_EXAMPLE_ALL += dcl_pi
BUILD_EXAMPLE_ALL += dcl_pi2
BUILD_EXAMPLE_ALL += dcl_pid
BUILD_EXAMPLE_ALL += power_measurements
BUILD_EXAMPLE_ALL += sfra
BUILD_EXAMPLE_ALL += spll
BUILD_EXAMPLE_ALL += datalog
BUILD_EXAMPLE_ALL += emavg
BUILD_EXAMPLE_ALL += rampgen
BUILD_EXAMPLE_ALL += adc_os_detect_example
BUILD_EXAMPLE_ALL += cmpss_ctrip_example
BUILD_EXAMPLE_ALL += compdac_adc_loopback_example
BUILD_EXAMPLE_ALL += crc_example
BUILD_EXAMPLE_ALL += dac_adc_loopback_example
BUILD_EXAMPLE_ALL += dcc_example
BUILD_EXAMPLE_ALL += sdl_ecap_signal_monitoring
BUILD_EXAMPLE_ALL += sdl_epwm_ecap_example
BUILD_EXAMPLE_ALL += sdl_eqep_software_testing
BUILD_EXAMPLE_ALL += sdl_eqep_watchdog_test
BUILD_EXAMPLE_ALL += esm_errorsts_example
BUILD_EXAMPLE_ALL += esm_mmrparity_example
BUILD_EXAMPLE_ALL += gpio_loopback_example
BUILD_EXAMPLE_ALL += integrated_example
BUILD_EXAMPLE_ALL += lcm_example
BUILD_EXAMPLE_ALL += sdl_lpost_mpost_example
BUILD_EXAMPLE_ALL += memss_example
BUILD_EXAMPLE_ALL += sdl_pipe_parity_check
BUILD_EXAMPLE_ALL += sdl_sic_faultemu_example
BUILD_EXAMPLE_ALL += sic_selftest_example
BUILD_EXAMPLE_ALL += sdl_stack_overflow_detect_example
BUILD_EXAMPLE_ALL += sysctl_example
BUILD_EXAMPLE_ALL += sdl_timer_example
BUILD_EXAMPLE_ALL += wadi_mmrparity_example
BUILD_EXAMPLE_ALL += wadi_software_testing
BUILD_EXAMPLE_ALL += xint_example
BUILD_EXAMPLE_ALL += crypto_aes_cbc_128
BUILD_EXAMPLE_ALL += crypto_aes_cbc_256
BUILD_EXAMPLE_ALL += crypto_aes_ccm_128
BUILD_EXAMPLE_ALL += crypto_aes_ccm_256
BUILD_EXAMPLE_ALL += crypto_aes_cfb
BUILD_EXAMPLE_ALL += crypto_aes_cmac_128
BUILD_EXAMPLE_ALL += crypto_aes_cmac_256
BUILD_EXAMPLE_ALL += crypto_aes_ctr
BUILD_EXAMPLE_ALL += crypto_aes_ecb_128
BUILD_EXAMPLE_ALL += crypto_aes_ecb_256
BUILD_EXAMPLE_ALL += crypto_aes_gcm
BUILD_EXAMPLE_ALL += crypto_aes_ofb
BUILD_EXAMPLE_ALL += crypto_aes_xts
BUILD_EXAMPLE_ALL += crypto_hmac_sha256
BUILD_EXAMPLE_ALL += crypto_hmac_sha512
BUILD_EXAMPLE_ALL += crypto_sha_256
BUILD_EXAMPLE_ALL += crypto_sha_512
BUILD_EXAMPLE_ALL += crypto_sm3
BUILD_EXAMPLE_ALL += crypto_sm4_cbc
BUILD_EXAMPLE_ALL += crypto_sm4_cfb
BUILD_EXAMPLE_ALL += crypto_sm4_ctr
BUILD_EXAMPLE_ALL += crypto_sm4_ecb
BUILD_EXAMPLE_ALL += crypto_sm4_ofb
examples: $(BUILD_EXAMPLE_ALL)
acc_data_capture_with_preview:
$(MAKE) -C examples/ai/acc_data_capture_with_preview/f29h85x/ccs -f makefile all
arc_fault:
$(MAKE) -C examples/ai/arc_fault/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/arc_fault/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/arc_fault/f29p58x/ccs -f makefile all
blower_imbalance:
$(MAKE) -C examples/ai/blower_imbalance/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/blower_imbalance/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/blower_imbalance/f29p58x/ccs -f makefile all
fan_blade_anomalydetection:
$(MAKE) -C examples/ai/fan_blade_anomalydetection/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/fan_blade_anomalydetection/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/fan_blade_anomalydetection/f29p58x/ccs -f makefile all
fan_blade_anomalydetection_ondevice_learning:
$(MAKE) -C examples/ai/fan_blade_anomalydetection_ondevice_learning/f29h85x/ccs -f makefile all
forecasting_pmsm_rotor_temp:
$(MAKE) -C examples/ai/forecasting_pmsm_rotor_temp/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/forecasting_pmsm_rotor_temp/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/forecasting_pmsm_rotor_temp/f29p58x/ccs -f makefile all
generic_timeseries_anomalydetection:
$(MAKE) -C examples/ai/generic_timeseries_anomalydetection/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/generic_timeseries_anomalydetection/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/generic_timeseries_anomalydetection/f29p58x/ccs -f makefile all
generic_timeseries_classification:
$(MAKE) -C examples/ai/generic_timeseries_classification/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/generic_timeseries_classification/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/generic_timeseries_classification/f29p58x/ccs -f makefile all
generic_timeseries_forecasting:
$(MAKE) -C examples/ai/generic_timeseries_forecasting/f29h85x/ccs -f makefile all
generic_timeseries_regression:
$(MAKE) -C examples/ai/generic_timeseries_regression/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/generic_timeseries_regression/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/generic_timeseries_regression/f29p58x/ccs -f makefile all
hvac_indoor_temp_forecast:
$(MAKE) -C examples/ai/hvac_indoor_temp_forecast/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/hvac_indoor_temp_forecast/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/hvac_indoor_temp_forecast/f29p58x/ccs -f makefile all
motor_fault:
$(MAKE) -C examples/ai/motor_fault/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/motor_fault/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/motor_fault/f29p58x/ccs -f makefile all
temp_data_capture:
$(MAKE) -C examples/ai/temp_data_capture/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/temp_data_capture/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/temp_data_capture/f29p58x/ccs -f makefile all
torque_measurement:
$(MAKE) -C examples/ai/torque_measurement/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/torque_measurement/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/torque_measurement/f29p58x/ccs -f makefile all
washing_machine_load_weighing:
$(MAKE) -C examples/ai/washing_machine_load_weighing/f29h85x/ccs -f makefile all
$(MAKE) -C examples/ai/washing_machine_load_weighing/f29p32x/ccs -f makefile all
$(MAKE) -C examples/ai/washing_machine_load_weighing/f29p58x/ccs -f makefile all
adc_academy_lab:
$(MAKE) -C examples/driverlib/single_core/adc/adc_academy_lab/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_academy_lab/f29p58x/ccs -f makefile all
adc_ex1_soc_software:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex1_soc_software/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex1_soc_software/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex1_soc_software/f29p58x/ccs -f makefile all
adc_ex2_soc_epwm:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex2_soc_epwm/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex2_soc_epwm/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex2_soc_epwm/f29p58x/ccs -f makefile all
adc_ex3_temp_sensor:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex3_temp_sensor/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex3_temp_sensor/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex3_temp_sensor/f29p58x/ccs -f makefile all
adc_ex4_software_sync:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex4_software_sync/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex4_software_sync/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex4_software_sync/f29p58x/ccs -f makefile all
adc_ex5_soc_continuous:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex5_soc_continuous/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex5_soc_continuous/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex5_soc_continuous/f29p58x/ccs -f makefile all
adc_ex6_continuous_dma:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex6_continuous_dma/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex6_continuous_dma/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex6_continuous_dma/f29p58x/ccs -f makefile all
adc_ex7_ppb_offset:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex7_ppb_offset/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex7_ppb_offset/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex7_ppb_offset/f29p58x/ccs -f makefile all
adc_ex8_ppb_limits:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex8_ppb_limits/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex8_ppb_limits/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex8_ppb_limits/f29p58x/ccs -f makefile all
adc_ex9_ppb_delay:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex9_ppb_delay/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex9_ppb_delay/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex9_ppb_delay/f29p58x/ccs -f makefile all
adc_ex10_multiple_soc_epwm:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex10_multiple_soc_epwm/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex10_multiple_soc_epwm/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex10_multiple_soc_epwm/f29p58x/ccs -f makefile all
adc_ex11_burst_mode_epwm:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex11_burst_mode_epwm/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex11_burst_mode_epwm/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex11_burst_mode_epwm/f29p58x/ccs -f makefile all
adc_ex12_burst_mode_oversampling:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex12_burst_mode_oversampling/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex12_burst_mode_oversampling/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex12_burst_mode_oversampling/f29p58x/ccs -f makefile all
adc_ex13_soc_oversampling:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex13_soc_oversampling/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex13_soc_oversampling/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex13_soc_oversampling/f29p58x/ccs -f makefile all
adc_ex14_ppb_pwm_trip:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex14_ppb_pwm_trip/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex14_ppb_pwm_trip/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex14_ppb_pwm_trip/f29p58x/ccs -f makefile all
adc_ex15_trigger_repeater_oversampling:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex15_trigger_repeater_oversampling/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex15_trigger_repeater_oversampling/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex15_trigger_repeater_oversampling/f29p58x/ccs -f makefile all
adc_ex16_trigger_repeater_undersampling:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex16_trigger_repeater_undersampling/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex16_trigger_repeater_undersampling/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex16_trigger_repeater_undersampling/f29p58x/ccs -f makefile all
adc_ex17_safety_checker:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex17_safety_checker/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex17_safety_checker/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex17_safety_checker/f29p58x/ccs -f makefile all
adc_ex18_fast_oversampling:
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex18_fast_oversampling/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/adc/adc_ex18_fast_oversampling/f29p58x/ccs -f makefile all
clb_academy_lab:
$(MAKE) -C examples/driverlib/single_core/clb/clb_academy_lab/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_academy_lab/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_academy_lab/f29p58x/ccs -f makefile all
clb_ecap_academy_lab:
$(MAKE) -C examples/driverlib/single_core/clb/clb_ecap_academy_lab/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_ecap_academy_lab/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_ecap_academy_lab/f29p58x/ccs -f makefile all
clb_ex1_combinatorial_logic:
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex1_combinatorial_logic/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex1_combinatorial_logic/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex1_combinatorial_logic/f29p58x/ccs -f makefile all
clb_ex2_gpio_input_filter:
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex2_gpio_input_filter/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex2_gpio_input_filter/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex2_gpio_input_filter/f29p58x/ccs -f makefile all
clb_ex3_auxiliary_pwm:
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex3_auxiliary_pwm/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex3_auxiliary_pwm/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex3_auxiliary_pwm/f29p58x/ccs -f makefile all
clb_ex4_pwm_protection:
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex4_pwm_protection/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/clb/clb_ex4_pwm_protection/f29p58x/ccs -f makefile all
cmpss_ex1_asynch:
$(MAKE) -C examples/driverlib/single_core/cmpss/cmpss_ex1_asynch/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/cmpss/cmpss_ex1_asynch/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/cmpss/cmpss_ex1_asynch/f29p58x/ccs -f makefile all
cmpss_ex2_digital_filter:
$(MAKE) -C examples/driverlib/single_core/cmpss/cmpss_ex2_digital_filter/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/cmpss/cmpss_ex2_digital_filter/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/cmpss/cmpss_ex2_digital_filter/f29p58x/ccs -f makefile all
buffdac_ex1_enable:
$(MAKE) -C examples/driverlib/single_core/dac/buffdac_ex1_enable/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dac/buffdac_ex1_enable/f29p58x/ccs -f makefile all
buffdac_ex2_random:
$(MAKE) -C examples/driverlib/single_core/dac/buffdac_ex2_random/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dac/buffdac_ex2_random/f29p58x/ccs -f makefile all
dcc_ex1_single_shot_verification:
$(MAKE) -C examples/driverlib/single_core/dcc/dcc_ex1_single_shot_verification/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dcc/dcc_ex1_single_shot_verification/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dcc/dcc_ex1_single_shot_verification/f29p58x/ccs -f makefile all
dcc_ex2_single_shot_measurement:
$(MAKE) -C examples/driverlib/single_core/dcc/dcc_ex2_single_shot_measurement/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dcc/dcc_ex2_single_shot_measurement/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dcc/dcc_ex2_single_shot_measurement/f29p58x/ccs -f makefile all
dcc_ex3_continuous_monitoring_of_clock:
$(MAKE) -C examples/driverlib/single_core/dcc/dcc_ex3_continuous_monitoring_of_clock/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dcc/dcc_ex3_continuous_monitoring_of_clock/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dcc/dcc_ex3_continuous_monitoring_of_clock/f29p58x/ccs -f makefile all
dlt_ex1_datalog_tag:
$(MAKE) -C examples/driverlib/single_core/dlt/dlt_ex1_datalog_tag/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dlt/dlt_ex1_datalog_tag/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dlt/dlt_ex1_datalog_tag/f29p58x/ccs -f makefile all
dlt_ex2_dma_fsi_export:
$(MAKE) -C examples/driverlib/single_core/dlt/dlt_ex2_dma_fsi_export/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dlt/dlt_ex2_dma_fsi_export/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dlt/dlt_ex2_dma_fsi_export/f29p58x/ccs -f makefile all
dlt_ex3_datalog_erad:
$(MAKE) -C examples/driverlib/single_core/dlt/dlt_ex3_datalog_erad/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dlt/dlt_ex3_datalog_erad/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/dlt/dlt_ex3_datalog_erad/f29p58x/ccs -f makefile all
ecap_academy_lab:
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_academy_lab/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_academy_lab/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_academy_lab/f29p58x/ccs -f makefile all
ecap_ex1_apwm:
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex1_apwm/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex1_apwm/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex1_apwm/f29p58x/ccs -f makefile all
ecap_ex2_capture_pwm:
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex2_capture_pwm/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex2_capture_pwm/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex2_capture_pwm/f29p58x/ccs -f makefile all
ecap_ex3_apwm_phase_shift:
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex3_apwm_phase_shift/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex3_apwm_phase_shift/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex3_apwm_phase_shift/f29p58x/ccs -f makefile all
ecap_ex4_dma_transfer:
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex4_dma_transfer/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex4_dma_transfer/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/ecap/ecap_ex4_dma_transfer/f29p58x/ccs -f makefile all
emif_ex1_16bit_sdram_syscfg:
$(MAKE) -C examples/driverlib/single_core/emif/emif_ex1_16bit_sdram_syscfg/f29h85x/ccs -f makefile all
emif_ex2_16bit_asram_syscfg:
$(MAKE) -C examples/driverlib/single_core/emif/emif_ex2_16bit_asram_syscfg/f29h85x/ccs -f makefile all
emif_ex3_32bit_sdram_syscfg:
$(MAKE) -C examples/driverlib/single_core/emif/emif_ex3_32bit_sdram_syscfg/f29h85x/ccs -f makefile all
empty_driverlib_project:
$(MAKE) -C examples/driverlib/single_core/empty_projects/empty_driverlib_project/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/empty_projects/empty_driverlib_project/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/empty_projects/empty_driverlib_project/f29p58x/ccs -f makefile all
emulate_device_ex1_f29p58x:
$(MAKE) -C examples/driverlib/single_core/emulate_device/emulate_device_ex1_f29p58x/f29h85x/ccs -f makefile all
emulate_device_ex2_f29p32x:
$(MAKE) -C examples/driverlib/single_core/emulate_device/emulate_device_ex2_f29p32x/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/emulate_device/emulate_device_ex2_f29p32x/f29p58x/ccs -f makefile all
emulate_device_ex3_f29p32x_access_error:
$(MAKE) -C examples/driverlib/single_core/emulate_device/emulate_device_ex3_f29p32x_access_error/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/emulate_device/emulate_device_ex3_f29p32x_access_error/f29p58x/ccs -f makefile all
epg_ex1_generate_clocks:
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex1_generate_clocks/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex1_generate_clocks/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex1_generate_clocks/f29p58x/ccs -f makefile all
epg_ex2_generate_two_offset_clocks:
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex2_generate_two_offset_clocks/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex2_generate_two_offset_clocks/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex2_generate_two_offset_clocks/f29p58x/ccs -f makefile all
epg_ex3_generate_two_offset_clocks_with_siggen:
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex3_generate_two_offset_clocks_with_siggen/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex3_generate_two_offset_clocks_with_siggen/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex3_generate_two_offset_clocks_with_siggen/f29p58x/ccs -f makefile all
epg_ex4_generate_serial_data:
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex4_generate_serial_data/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex4_generate_serial_data/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex4_generate_serial_data/f29p58x/ccs -f makefile all
epg_ex5_generate_serial_data_shift_mode:
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex5_generate_serial_data_shift_mode/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex5_generate_serial_data_shift_mode/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epg/epg_ex5_generate_serial_data_shift_mode/f29p58x/ccs -f makefile all
epwm_ex1_trip_zone:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex1_trip_zone/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex1_trip_zone/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex1_trip_zone/f29p58x/ccs -f makefile all
epwm_ex2_updown_aq:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex2_updown_aq/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex2_updown_aq/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex2_updown_aq/f29p58x/ccs -f makefile all
epwm_ex3_synchronization:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex3_synchronization/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex3_synchronization/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex3_synchronization/f29p58x/ccs -f makefile all
epwm_ex4_digital_compare:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex4_digital_compare/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex4_digital_compare/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex4_digital_compare/f29p58x/ccs -f makefile all
epwm_ex5_digital_compare_event_filter:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex5_digital_compare_event_filter/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex5_digital_compare_event_filter/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex5_digital_compare_event_filter/f29p58x/ccs -f makefile all
epwm_ex6_valley_switching:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex6_valley_switching/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex6_valley_switching/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex6_valley_switching/f29p58x/ccs -f makefile all
epwm_ex7_edge_filter:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex7_edge_filter/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex7_edge_filter/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex7_edge_filter/f29p58x/ccs -f makefile all
epwm_ex8_deadband:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex8_deadband/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex8_deadband/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex8_deadband/f29p58x/ccs -f makefile all
epwm_ex9_dma:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex9_dma/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex9_dma/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex9_dma/f29p58x/ccs -f makefile all
epwm_ex10_chopper:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex10_chopper/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex10_chopper/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex10_chopper/f29p58x/ccs -f makefile all
epwm_ex11_configure_signal:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex11_configure_signal/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex11_configure_signal/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex11_configure_signal/f29p58x/ccs -f makefile all
epwm_ex12_monoshot_mode:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex12_monoshot_mode/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex12_monoshot_mode/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex12_monoshot_mode/f29p58x/ccs -f makefile all
epwm_ex13_up_aq:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex13_up_aq/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex13_up_aq/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex13_up_aq/f29p58x/ccs -f makefile all
epwm_ex14_global_load:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex14_global_load/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex14_global_load/f29p58x/ccs -f makefile all
epwm_ex15_xcmp_multiple_edges:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex15_xcmp_multiple_edges/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex15_xcmp_multiple_edges/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex15_xcmp_multiple_edges/f29p58x/ccs -f makefile all
epwm_ex16_event_detection:
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex16_event_detection/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex16_event_detection/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/epwm/epwm_ex16_event_detection/f29p58x/ccs -f makefile all
eqep_academy_lab:
$(MAKE) -C examples/driverlib/single_core/eqep/eqep_academy_lab/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/eqep/eqep_academy_lab/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/eqep/eqep_academy_lab/f29p58x/ccs -f makefile all
eqep_ex2_freq_cal_interrupt:
$(MAKE) -C examples/driverlib/single_core/eqep/eqep_ex2_freq_cal_interrupt/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/eqep/eqep_ex2_freq_cal_interrupt/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/eqep/eqep_ex2_freq_cal_interrupt/f29p58x/ccs -f makefile all
eqep_ex5_speed_dir_motor:
$(MAKE) -C examples/driverlib/single_core/eqep/eqep_ex5_speed_dir_motor/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/eqep/eqep_ex5_speed_dir_motor/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/eqep/eqep_ex5_speed_dir_motor/f29p58x/ccs -f makefile all
erad_ex1_profile_function_no_syscfg:
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex1_profile_function_no_syscfg/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex1_profile_function_no_syscfg/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex1_profile_function_no_syscfg/f29p58x/ccs -f makefile all
erad_ex2_profile_function_syscfg:
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex2_profile_function_syscfg/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex2_profile_function_syscfg/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex2_profile_function_syscfg/f29p58x/ccs -f makefile all
erad_ex3_bus_monitor_no_syscfg:
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex3_bus_monitor_no_syscfg/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex3_bus_monitor_no_syscfg/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex3_bus_monitor_no_syscfg/f29p58x/ccs -f makefile all
erad_ex4_bus_monitor_syscfg:
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex4_bus_monitor_syscfg/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex4_bus_monitor_syscfg/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex4_bus_monitor_syscfg/f29p58x/ccs -f makefile all
erad_ex5_stack_overflow_detect_no_syscfg:
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex5_stack_overflow_detect_no_syscfg/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex5_stack_overflow_detect_no_syscfg/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex5_stack_overflow_detect_no_syscfg/f29p58x/ccs -f makefile all
erad_ex6_stack_overflow_detect_syscfg:
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex6_stack_overflow_detect_syscfg/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex6_stack_overflow_detect_syscfg/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex6_stack_overflow_detect_syscfg/f29p58x/ccs -f makefile all
erad_ex7_free_running_counter_syscfg:
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex7_free_running_counter_syscfg/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex7_free_running_counter_syscfg/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex7_free_running_counter_syscfg/f29p58x/ccs -f makefile all
erad_ex8_gpio_trigger_nmi:
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex8_gpio_trigger_nmi/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex8_gpio_trigger_nmi/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/application_owned_examples/erad_ex8_gpio_trigger_nmi/f29p58x/ccs -f makefile all
erad_ex1_profile_interrupts:
$(MAKE) -C examples/driverlib/single_core/erad/debugger_owned_examples/erad_ex1_profile_interrupts/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/debugger_owned_examples/erad_ex1_profile_interrupts/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/debugger_owned_examples/erad_ex1_profile_interrupts/f29p58x/ccs -f makefile all
erad_ex2_stack_overflow:
$(MAKE) -C examples/driverlib/single_core/erad/debugger_owned_examples/erad_ex2_stack_overflow/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/debugger_owned_examples/erad_ex2_stack_overflow/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/erad/debugger_owned_examples/erad_ex2_stack_overflow/f29p58x/ccs -f makefile all
esm_ex1_tmuromparity_test:
$(MAKE) -C examples/driverlib/single_core/esm/esm_ex1_tmuromparity_test/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/esm/esm_ex1_tmuromparity_test/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/esm/esm_ex1_tmuromparity_test/f29p58x/ccs -f makefile all
esm_ex2_safetyaggregator:
$(MAKE) -C examples/driverlib/single_core/esm/esm_ex2_safetyaggregator/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/esm/esm_ex2_safetyaggregator/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/esm/esm_ex2_safetyaggregator/f29p58x/ccs -f makefile all
F29H85x_EEPROM:
$(MAKE) -C examples/driverlib/single_core/flash/F29H85x_EEPROM/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/F29H85x_EEPROM/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/F29H85x_EEPROM/f29p58x/ccs -f makefile all
F29H85x_EEPROM_PingPong:
$(MAKE) -C examples/driverlib/single_core/flash/F29H85x_EEPROM_PingPong/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/F29H85x_EEPROM_PingPong/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/F29H85x_EEPROM_PingPong/f29p58x/ccs -f makefile all
flash_bankmgmt_program_builtin_api:
$(MAKE) -C examples/driverlib/single_core/flash/flash_bankmgmt_program_builtin_api/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_bankmgmt_program_builtin_api/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_bankmgmt_program_builtin_api/f29p58x/ccs -f makefile all
flash_bankmode_fota:
$(MAKE) -C examples/driverlib/single_core/flash/flash_bankmode_fota/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_bankmode_fota/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_bankmode_fota/f29p58x/ccs -f makefile all
flash_mode0_128_program:
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode0_128_program/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode0_128_program/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode0_128_program/f29p58x/ccs -f makefile all
flash_mode0_512_program:
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode0_512_program/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode0_512_program/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode0_512_program/f29p58x/ccs -f makefile all
flash_mode0_seccfg_program:
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode0_seccfg_program/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode0_seccfg_program/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode0_seccfg_program/f29p58x/ccs -f makefile all
flash_mode1_128_program:
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode1_128_program/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode1_128_program/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode1_128_program/f29p58x/ccs -f makefile all
flash_mode1_512_program:
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode1_512_program/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode1_512_program/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_mode1_512_program/f29p58x/ccs -f makefile all
flash_write_erase_protection:
$(MAKE) -C examples/driverlib/single_core/flash/flash_write_erase_protection/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_write_erase_protection/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/flash_write_erase_protection/f29p58x/ccs -f makefile all
jtag_flash_secure_kernel:
$(MAKE) -C examples/driverlib/single_core/flash/jtag_flash_secure_kernel/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/jtag_flash_secure_kernel/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/flash/jtag_flash_secure_kernel/f29p58x/ccs -f makefile all
fsi_academy_lab:
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_academy_lab/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_academy_lab/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_academy_lab/f29p58x/ccs -f makefile all
fsi_ex1_loopback_cpucontrol:
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex1_loopback_cpucontrol/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex1_loopback_cpucontrol/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex1_loopback_cpucontrol/f29p58x/ccs -f makefile all
fsi_ex2_periodic_frame:
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex2_periodic_frame/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex2_periodic_frame/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex2_periodic_frame/f29p58x/ccs -f makefile all
fsi_ex3_command_response_initiator:
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex3_command_response_initiator/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex3_command_response_initiator/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex3_command_response_initiator/f29p58x/ccs -f makefile all
fsi_ex3_command_response_target:
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex3_command_response_target/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex3_command_response_target/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/fsi/fsi_ex3_command_response_target/f29p58x/ccs -f makefile all
gpio_ex1_toggle:
$(MAKE) -C examples/driverlib/single_core/gpio/gpio_ex1_toggle/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/gpio/gpio_ex1_toggle/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/gpio/gpio_ex1_toggle/f29p58x/ccs -f makefile all
gpio_ex2_interrupt:
$(MAKE) -C examples/driverlib/single_core/gpio/gpio_ex2_interrupt/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/gpio/gpio_ex2_interrupt/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/gpio/gpio_ex2_interrupt/f29p58x/ccs -f makefile all
gpio_ex3_aio_external_interrupt:
$(MAKE) -C examples/driverlib/single_core/gpio/gpio_ex3_aio_external_interrupt/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/gpio/gpio_ex3_aio_external_interrupt/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/gpio/gpio_ex3_aio_external_interrupt/f29p58x/ccs -f makefile all
hrcap_ex1_capture:
$(MAKE) -C examples/driverlib/single_core/hrcap/hrcap_ex1_capture/f29h85x/ccs -f makefile all
hrpwm_ex1_duty_sfo:
$(MAKE) -C examples/driverlib/single_core/hrpwm/hrpwm_ex1_duty_sfo/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/hrpwm/hrpwm_ex1_duty_sfo/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/hrpwm/hrpwm_ex1_duty_sfo/f29p58x/ccs -f makefile all
hrpwm_ex3_prd_updown_sfo:
$(MAKE) -C examples/driverlib/single_core/hrpwm/hrpwm_ex3_prd_updown_sfo/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/hrpwm/hrpwm_ex3_prd_updown_sfo/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/hrpwm/hrpwm_ex3_prd_updown_sfo/f29p58x/ccs -f makefile all
hrpwm_ex8_xcmp_multiple_edges:
$(MAKE) -C examples/driverlib/single_core/hrpwm/hrpwm_ex8_xcmp_multiple_edges/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/hrpwm/hrpwm_ex8_xcmp_multiple_edges/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/hrpwm/hrpwm_ex8_xcmp_multiple_edges/f29p58x/ccs -f makefile all
i2c_ex1_loopback:
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex1_loopback/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex1_loopback/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex1_loopback/f29p58x/ccs -f makefile all
i2c_ex2_eeprom:
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex2_eeprom/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex2_eeprom/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex2_eeprom/f29p58x/ccs -f makefile all
i2c_ex3_external_loopback:
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex3_external_loopback/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex3_external_loopback/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex3_external_loopback/f29p58x/ccs -f makefile all
i2c_ex7_clock_stretching_controller_tx:
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex7_clock_stretching_controller_tx/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex7_clock_stretching_controller_tx/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex7_clock_stretching_controller_tx/f29p58x/ccs -f makefile all
i2c_ex7_clock_stretching_target_rx:
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex7_clock_stretching_target_rx/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex7_clock_stretching_target_rx/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/i2c/i2c_ex7_clock_stretching_target_rx/f29p58x/ccs -f makefile all
interrupt_ex1_int_rtint_latency:
$(MAKE) -C examples/driverlib/single_core/interrupt/interrupt_ex1_int_rtint_latency/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/interrupt/interrupt_ex1_int_rtint_latency/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/interrupt/interrupt_ex1_int_rtint_latency/f29p58x/ccs -f makefile all
interrupt_ex2_int_rtint_nesting:
$(MAKE) -C examples/driverlib/single_core/interrupt/interrupt_ex2_int_rtint_nesting/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/interrupt/interrupt_ex2_int_rtint_nesting/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/interrupt/interrupt_ex2_int_rtint_nesting/f29p58x/ccs -f makefile all
interrupt_ex3_rtint_nesting_limit:
$(MAKE) -C examples/driverlib/single_core/interrupt/interrupt_ex3_rtint_nesting_limit/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/interrupt/interrupt_ex3_rtint_nesting_limit/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/interrupt/interrupt_ex3_rtint_nesting_limit/f29p58x/ccs -f makefile all
launchxl_ex1_led_blinky:
$(MAKE) -C examples/driverlib/single_core/launchxl_f29h85x/launchxl_ex1_led_blinky/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/launchxl_f29h85x/launchxl_ex1_led_blinky/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/launchxl_f29h85x/launchxl_ex1_led_blinky/f29p58x/ccs -f makefile all
led_ex1_blinky:
$(MAKE) -C examples/driverlib/single_core/led/led_ex1_blinky/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/led/led_ex1_blinky/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/led/led_ex1_blinky/f29p58x/ccs -f makefile all
lin_ex1_loopback_interrupts:
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex1_loopback_interrupts/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex1_loopback_interrupts/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex1_loopback_interrupts/f29p58x/ccs -f makefile all
lin_ex2_sci_loopback:
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex2_sci_loopback/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex2_sci_loopback/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex2_sci_loopback/f29p58x/ccs -f makefile all
lin_ex3_sci_dma:
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex3_sci_dma/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex3_sci_dma/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex3_sci_dma/f29p58x/ccs -f makefile all
lin_ex4_loopback_polling:
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex4_loopback_polling/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex4_loopback_polling/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex4_loopback_polling/f29p58x/ccs -f makefile all
lin_ex5_sci_dma_single_buffer:
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex5_sci_dma_single_buffer/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex5_sci_dma_single_buffer/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lin/lin_ex5_sci_dma_single_buffer/f29p58x/ccs -f makefile all
lpm_ex1_idlewake_gpio:
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex1_idlewake_gpio/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex1_idlewake_gpio/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex1_idlewake_gpio/f29p58x/ccs -f makefile all
lpm_ex2_idlewake_watchdog:
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex2_idlewake_watchdog/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex2_idlewake_watchdog/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex2_idlewake_watchdog/f29p58x/ccs -f makefile all
lpm_ex3_standbywake_gpio:
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex3_standbywake_gpio/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex3_standbywake_gpio/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex3_standbywake_gpio/f29p58x/ccs -f makefile all
lpm_ex4_standbywake_watchdog:
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex4_standbywake_watchdog/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex4_standbywake_watchdog/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/lpm/lpm_ex4_standbywake_watchdog/f29p58x/ccs -f makefile all
mcan_ex1_loopback_interrupts:
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex1_loopback_interrupts/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex1_loopback_interrupts/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex1_loopback_interrupts/f29p58x/ccs -f makefile all
mcan_ex2_loopback_polling:
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex2_loopback_polling/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex2_loopback_polling/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex2_loopback_polling/f29p58x/ccs -f makefile all
mcan_ex3_loopback_interrupts_fifo:
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex3_loopback_interrupts_fifo/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex3_loopback_interrupts_fifo/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex3_loopback_interrupts_fifo/f29p58x/ccs -f makefile all
mcan_ex4_transmit:
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex4_transmit/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex4_transmit/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex4_transmit/f29p58x/ccs -f makefile all
mcan_ex5_receive:
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex5_receive/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex5_receive/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex5_receive/f29p58x/ccs -f makefile all
mcan_ex6_transmit_syscfg:
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex6_transmit_syscfg/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex6_transmit_syscfg/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/mcan/mcan_ex6_transmit_syscfg/f29p58x/ccs -f makefile all
pmbus_ex1_controller_i2c_mode:
$(MAKE) -C examples/driverlib/single_core/pmbus/pmbus_ex1_controller_i2c_mode/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/pmbus/pmbus_ex1_controller_i2c_mode/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/pmbus/pmbus_ex1_controller_i2c_mode/f29p58x/ccs -f makefile all
pmbus_ex2_target_i2c_mode:
$(MAKE) -C examples/driverlib/single_core/pmbus/pmbus_ex2_target_i2c_mode/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/pmbus/pmbus_ex2_target_i2c_mode/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/pmbus/pmbus_ex2_target_i2c_mode/f29p58x/ccs -f makefile all
rtdma_academy_lab:
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_academy_lab/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_academy_lab/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_academy_lab/f29p58x/ccs -f makefile all
rtdma_ex1_mem_transfer:
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex1_mem_transfer/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex1_mem_transfer/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex1_mem_transfer/f29p58x/ccs -f makefile all
rtdma_ex2_mem_transfer_mpu:
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex2_mem_transfer_mpu/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex2_mem_transfer_mpu/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex2_mem_transfer_mpu/f29p58x/ccs -f makefile all
rtdma_ex3_mem_transfer_64_bit:
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex3_mem_transfer_64_bit/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex3_mem_transfer_64_bit/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex3_mem_transfer_64_bit/f29p58x/ccs -f makefile all
rtdma_ex4_address_wrapping_adc:
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex4_address_wrapping_adc/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex4_address_wrapping_adc/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/rtdma/rtdma_ex4_address_wrapping_adc/f29p58x/ccs -f makefile all
sdfm_ex1_filter_sync_cpuread:
$(MAKE) -C examples/driverlib/single_core/sdfm/sdfm_ex1_filter_sync_cpuread/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/sdfm/sdfm_ex1_filter_sync_cpuread/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/sdfm/sdfm_ex1_filter_sync_cpuread/f29p58x/ccs -f makefile all
sdfm_ex4_pwm_sync_cpuread:
$(MAKE) -C examples/driverlib/single_core/sdfm/sdfm_ex4_pwm_sync_cpuread/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/sdfm/sdfm_ex4_pwm_sync_cpuread/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/sdfm/sdfm_ex4_pwm_sync_cpuread/f29p58x/ccs -f makefile all
sent_ex1_single_sensor:
$(MAKE) -C examples/driverlib/single_core/sent/sent_ex1_single_sensor/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/sent/sent_ex1_single_sensor/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/sent/sent_ex1_single_sensor/f29p58x/ccs -f makefile all
spi_ex1_loopback:
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex1_loopback/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex1_loopback/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex1_loopback/f29p58x/ccs -f makefile all
spi_ex2_loopback_fifo_interrupts:
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex2_loopback_fifo_interrupts/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex2_loopback_fifo_interrupts/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex2_loopback_fifo_interrupts/f29p58x/ccs -f makefile all
spi_ex3_external_loopback:
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex3_external_loopback/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex3_external_loopback/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex3_external_loopback/f29p58x/ccs -f makefile all
spi_ex4_external_loopback_fifo_interrupts:
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex4_external_loopback_fifo_interrupts/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex4_external_loopback_fifo_interrupts/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex4_external_loopback_fifo_interrupts/f29p58x/ccs -f makefile all
spi_ex5_loopback_dma:
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex5_loopback_dma/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex5_loopback_dma/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/spi/spi_ex5_loopback_dma/f29p58x/ccs -f makefile all
sysctl_ex1_missing_clock_detection:
$(MAKE) -C examples/driverlib/single_core/sysctl/sysctl_ex1_missing_clock_detection/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/sysctl/sysctl_ex1_missing_clock_detection/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/sysctl/sysctl_ex1_missing_clock_detection/f29p58x/ccs -f makefile all
sysctl_ex2_xclkout:
$(MAKE) -C examples/driverlib/single_core/sysctl/sysctl_ex2_xclkout/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/sysctl/sysctl_ex2_xclkout/f29p58x/ccs -f makefile all
system_integration_lab:
$(MAKE) -C examples/driverlib/single_core/system_integration/system_integration_lab/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/system_integration/system_integration_lab/f29p58x/ccs -f makefile all
timer_academy_lab:
$(MAKE) -C examples/driverlib/single_core/timer/timer_academy_lab/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/timer/timer_academy_lab/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/timer/timer_academy_lab/f29p58x/ccs -f makefile all
timer_ex1_cputimers:
$(MAKE) -C examples/driverlib/single_core/timer/timer_ex1_cputimers/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/timer/timer_ex1_cputimers/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/timer/timer_ex1_cputimers/f29p58x/ccs -f makefile all
timer_ex2_cputimers_syscfg:
$(MAKE) -C examples/driverlib/single_core/timer/timer_ex2_cputimers_syscfg/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/timer/timer_ex2_cputimers_syscfg/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/timer/timer_ex2_cputimers_syscfg/f29p58x/ccs -f makefile all
uart_academy_lab:
$(MAKE) -C examples/driverlib/single_core/uart/uart_academy_lab/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/uart/uart_academy_lab/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/uart/uart_academy_lab/f29p58x/ccs -f makefile all
uart_ex1_loopback:
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex1_loopback/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex1_loopback/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex1_loopback/f29p58x/ccs -f makefile all
uart_ex2_loopback_fifo_interrupts:
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex2_loopback_fifo_interrupts/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex2_loopback_fifo_interrupts/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex2_loopback_fifo_interrupts/f29p58x/ccs -f makefile all
uart_ex3_loopback_dma:
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex3_loopback_dma/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex3_loopback_dma/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex3_loopback_dma/f29p58x/ccs -f makefile all
uart_ex4_echoback:
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex4_echoback/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex4_echoback/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/uart/uart_ex4_echoback/f29p58x/ccs -f makefile all
wadi_ex1_pulse_width:
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex1_pulse_width/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex1_pulse_width/f29p58x/ccs -f makefile all
wadi_ex2_frequency:
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex2_frequency/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex2_frequency/f29p58x/ccs -f makefile all
wadi_ex3_phase_overlap:
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex3_phase_overlap/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex3_phase_overlap/f29p58x/ccs -f makefile all
wadi_ex4_dead_band:
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex4_dead_band/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex4_dead_band/f29p58x/ccs -f makefile all
wadi_ex5_frequency_sss:
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex5_frequency_sss/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex5_frequency_sss/f29p58x/ccs -f makefile all
wadi_ex6_pw_with_dma_trigger:
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex6_pw_with_dma_trigger/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/wadi/wadi_ex6_pw_with_dma_trigger/f29p58x/ccs -f makefile all
watchdog_ex1_service:
$(MAKE) -C examples/driverlib/single_core/watchdog/watchdog_ex1_service/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/watchdog/watchdog_ex1_service/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/watchdog/watchdog_ex1_service/f29p58x/ccs -f makefile all
xbar_ex1_input_output:
$(MAKE) -C examples/driverlib/single_core/xbar/xbar_ex1_input_output/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/xbar/xbar_ex1_input_output/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/xbar/xbar_ex1_input_output/f29p58x/ccs -f makefile all
xbar_ex2_output_pulse_stretch:
$(MAKE) -C examples/driverlib/single_core/xbar/xbar_ex2_output_pulse_stretch/f29h85x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/xbar/xbar_ex2_output_pulse_stretch/f29p32x/ccs -f makefile all
$(MAKE) -C examples/driverlib/single_core/xbar/xbar_ex2_output_pulse_stretch/f29p58x/ccs -f makefile all
ClockP:
$(MAKE) -C examples/kernel/dpl/freertos/ClockP/f29h85x/ccs -f makefile all
$(MAKE) -C examples/kernel/dpl/freertos/ClockP/f29p32x/ccs -f makefile all
$(MAKE) -C examples/kernel/dpl/freertos/ClockP/f29p58x/ccs -f makefile all