File tree 6 files changed +37
-3
lines changed 6 files changed +37
-3
lines changed Original file line number Diff line number Diff line change @@ -25,4 +25,4 @@ pkg.keywords:
25
25
pkg.deps :
26
26
27
27
pkg.init :
28
- bus_pkg_init : 100
28
+ bus_pkg_init : ' MYNEWT_VAL(BUS_SYSINIT_STAGE) '
Original file line number Diff line number Diff line change @@ -73,3 +73,8 @@ syscfg.defs:
73
73
magic value which is then checked on each operation to ensure
74
74
proper objects are passed to APIs.
75
75
value : 0
76
+
77
+ BUS_SYSINIT_STAGE :
78
+ description : >
79
+ System initialization stage for bus package
80
+ value : 100
Original file line number Diff line number Diff line change @@ -61,4 +61,4 @@ pkg.deps.SDADC:
61
61
- " @apache-mynewt-core/hw/drivers/adc/sdadc_da1469x"
62
62
63
63
pkg.init :
64
- da1469x_lpclk_init : 1
64
+ da1469x_lpclk_init : ' MYNEWT_VAL(DA1469X_LPCLK_SYSINIT_STAGE) '
Original file line number Diff line number Diff line change @@ -459,6 +459,11 @@ syscfg.defs:
459
459
'Disable watchdog on init'
460
460
value : 1
461
461
462
+ DA1469X_LPCLK_SYSINIT_STAGE :
463
+ description : >
464
+ 'Initalization stage for DA1469X'
465
+ value : 1
466
+
462
467
syscfg.vals :
463
468
OS_TICKS_PER_SEC : 128
464
469
Original file line number Diff line number Diff line change @@ -39,4 +39,4 @@ pkg.req_apis:
39
39
- smp
40
40
41
41
pkg.init :
42
- smp_os_pkg_init : 501
42
+ smp_os_pkg_init : ' MYNEWT_VAL(SMP_OS_SYSINIT_STAGE) '
Original file line number Diff line number Diff line change
1
+ #
2
+ # Licensed to the Apache Software Foundation (ASF) under one
3
+ # or more contributor license agreements. See the NOTICE file
4
+ # distributed with this work for additional information
5
+ # regarding copyright ownership. The ASF licenses this file
6
+ # to you under the Apache License, Version 2.0 (the
7
+ # "License"); you may not use this file except in compliance
8
+ # with the License. You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing,
13
+ # software distributed under the License is distributed on an
14
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ # KIND, either express or implied. See the License for the
16
+ # specific language governing permissions and limitations
17
+ # under the License.
18
+ #
19
+
20
+ syscfg.defs :
21
+ SMP_OS_SYSINIT_STAGE :
22
+ description : >
23
+ 'System initialization stage for SMP OS package'
24
+ value : 501
You can’t perform that action at this time.
0 commit comments