Skip to content

Commit 54de9ab

Browse files
committed
Clean up
1 parent 2745b8a commit 54de9ab

File tree

7 files changed

+19
-13
lines changed

7 files changed

+19
-13
lines changed

logs/libapp-demangle.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ pub fn aggregate_sensor_data(sensor_value: &SensorValue) -> MynewtResult<()> {
823823
90: e891 5018 ldmia.w r1, {r3, r4, ip, lr}
824824
94: e880 5018 stmia.w r0, {r3, r4, ip, lr}
825825
/Users/Luppy/mynewt/stm32bluepill-mynewt-sensor/rust/app/src/app_network.rs:53
826-
..*sensor_value // Copy the sensor name and value for transmission
826+
..*sensor_value // Copy the sensor name and value for transmission
827827
};
828828
// Transmit sensor value with geolocation and return the result
829829
send_sensor_data(&transmit_value)

logs/libapp.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ pub fn aggregate_sensor_data(sensor_value: &SensorValue) -> MynewtResult<()> {
823823
90: e891 5018 ldmia.w r1, {r3, r4, ip, lr}
824824
94: e880 5018 stmia.w r0, {r3, r4, ip, lr}
825825
/Users/Luppy/mynewt/stm32bluepill-mynewt-sensor/rust/app/src/app_network.rs:53
826-
..*sensor_value // Copy the sensor name and value for transmission
826+
..*sensor_value // Copy the sensor name and value for transmission
827827
};
828828
// Transmit sensor value with geolocation and return the result
829829
send_sensor_data(&transmit_value)

logs/libapp.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

logs/rustlib-demangle.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ pub fn aggregate_sensor_data(sensor_value: &SensorValue) -> MynewtResult<()> {
830830
90: e891 5018 ldmia.w r1, {r3, r4, ip, lr}
831831
94: e880 5018 stmia.w r0, {r3, r4, ip, lr}
832832
/Users/Luppy/mynewt/stm32bluepill-mynewt-sensor/rust/app/src/app_network.rs:53
833-
..*sensor_value // Copy the sensor name and value for transmission
833+
..*sensor_value // Copy the sensor name and value for transmission
834834
};
835835
// Transmit sensor value with geolocation and return the result
836836
send_sensor_data(&transmit_value)

logs/rustlib.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ pub fn aggregate_sensor_data(sensor_value: &SensorValue) -> MynewtResult<()> {
830830
90: e891 5018 ldmia.w r1, {r3, r4, ip, lr}
831831
94: e880 5018 stmia.w r0, {r3, r4, ip, lr}
832832
/Users/Luppy/mynewt/stm32bluepill-mynewt-sensor/rust/app/src/app_network.rs:53
833-
..*sensor_value // Copy the sensor name and value for transmission
833+
..*sensor_value // Copy the sensor name and value for transmission
834834
};
835835
// Transmit sensor value with geolocation and return the result
836836
send_sensor_data(&transmit_value)

targets/stm32l4_boot/target.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
target.app: "apps/boot_stub"
2-
target.bsp: "hw/bsp/stm32l4"
3-
#target.build_profile: optimized
4-
target.build_profile: debug
1+
# Bootloader Target Settings
2+
3+
# Bootloader that will be targeted
4+
target.app: "apps/boot_stub"
5+
6+
# Board Support Package (BSP) for the target
7+
target.bsp: "hw/bsp/stm32l4"
8+
9+
# Build with debug support. Or select "optimized" to remove debug support.
10+
target.build_profile: debug
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Target Settings
1+
# Application Target Settings
22

33
# Application that will be targeted
4-
target.app: apps/my_sensor_app
4+
target.app: "apps/my_sensor_app"
55

66
# Board Support Package (BSP) for the target
77
target.bsp: "hw/bsp/stm32l4"
88

9-
# Build with debug info
10-
target.build_profile: debug
9+
# Build with debug support. Or select "optimized" to remove debug support.
10+
target.build_profile: debug

0 commit comments

Comments
 (0)