forked from Linaro/lite-lava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frdm-k64f.jinja2
46 lines (44 loc) · 961 Bytes
/
frdm-k64f.jinja2
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
{# device_type: frdm-k64f #}
{% extends 'base.jinja2' %}
{% block body %}
board_id: '{{ board_id|default('0000000000') }}'
usb_vendor_id: '0d28'
usb_product_id: '0204'
actions:
deploy:
connections:
lxc:
methods:
lxc:
image:
parameters:
boot:
connections:
serial:
lxc:
ssh:
methods:
lxc:
pyocd:
parameters:
command:
pyocd-flashtool
options:
- -d {{ debug|default('debug') }}
- -t k64f
- -f 3000000
cmsis-dap:
parameters:
usb_mass_device: '{{ usb_mass_device|default('/notset') }}'
resets_after_flash: {{ resets_after_flash|default(True) }}
jlink:
parameters:
command:
JLinkExe
address:
0x00000000
options:
- '-device MK64FN1M0xxx12'
- '-if SWD'
- '-speed 4000'
{% endblock body -%}