File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ static nbgl_touchStatePosition_t pos;
62
62
*
63
63
* @param seph_packet received SEPH packet
64
64
*/
65
- void ux_process_finger_event (uint8_t seph_packet [])
65
+ void ux_process_finger_event (const uint8_t seph_packet [])
66
66
{
67
67
bool displayEnabled = ux_forward_event (true);
68
68
// enable/disable drawing according to UX decision
@@ -88,7 +88,7 @@ void ux_process_finger_event(uint8_t seph_packet[])
88
88
*
89
89
* @param seph_packet received SEPH packet
90
90
*/
91
- void ux_process_button_event (uint8_t seph_packet [])
91
+ void ux_process_button_event (const uint8_t seph_packet [])
92
92
{
93
93
bool displayEnabled = ux_forward_event (true);
94
94
// enable/disable drawing according to UX decision
Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ struct ux_state_s {
50
50
extern ux_state_t G_ux ;
51
51
extern bolos_ux_params_t G_ux_params ;
52
52
53
- extern void ux_process_finger_event (uint8_t seph_packet []);
54
- extern void ux_process_button_event (uint8_t seph_packet []);
53
+ extern void ux_process_finger_event (const uint8_t seph_packet []);
54
+ extern void ux_process_button_event (const uint8_t seph_packet []);
55
55
extern void ux_process_ticker_event (void );
56
56
extern void ux_process_default_event (void );
57
57
You can’t perform that action at this time.
0 commit comments