Skip to content

Commit 9b5d91a

Browse files
committed
Fix GCC/RX100 function naming error
Signed-off-by: Dinh Van Nam <[email protected]>
1 parent c813d7e commit 9b5d91a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

portable/GCC/RX100/port.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ static void prvStartFirstTask( void ) __attribute__((naked));
9898
*/
9999
#if ( configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H == 1 )
100100

101-
R_BSP_PRAGMA_INTERRUPT( vSoftwareInterruptISR, VECT( ICU, SWINT ) )
102-
R_BSP_ATTRIB_INTERRUPT void vSoftwareInterruptISR( void ) __attribute__( ( naked ) );
101+
R_BSP_PRAGMA_INTERRUPT( vPortSoftwareInterruptISR, VECT( ICU, SWINT ) )
102+
R_BSP_ATTRIB_INTERRUPT void vPortSoftwareInterruptISR( void ) __attribute__( ( naked ) );
103103

104104
#else /* configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H */
105105

106-
void vSoftwareInterruptISR( void ) __attribute__( ( naked ) );
106+
void vPortSoftwareInterruptISR( void ) __attribute__( ( naked ) );
107107

108108
#endif /* configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H */
109109

@@ -113,12 +113,12 @@ static void prvStartFirstTask( void ) __attribute__((naked));
113113
*/
114114
#if ( configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H == 1 )
115115

116-
R_BSP_PRAGMA_INTERRUPT( vTickISR, _VECT( configTICK_VECTOR ) )
117-
R_BSP_ATTRIB_INTERRUPT void vTickISR( void ); /* Do not add __attribute__( ( interrupt ) ). */
116+
R_BSP_PRAGMA_INTERRUPT( vPortTickISR, _VECT( configTICK_VECTOR ) )
117+
R_BSP_ATTRIB_INTERRUPT void vPortTickISR( void ); /* Do not add __attribute__( ( interrupt ) ). */
118118

119119
#else /* configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H */
120120

121-
void vTickISR( void ) __attribute__( ( interrupt ) );
121+
void vPortTickISR( void ) __attribute__( ( interrupt ) );
122122

123123
#endif /* configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H */
124124

0 commit comments

Comments
 (0)