Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion targets/TARGET_GigaDevice/TARGET_GD32E10X/can_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ void can_free(can_t *obj)
*/
int can_frequency(can_t *obj, int hz)
{
int reval;
int reval = 0;

/* The maximum baud rate support to 1M */
if (hz <= 1000000) {
Expand Down
2 changes: 1 addition & 1 deletion targets/TARGET_GigaDevice/TARGET_GD32F30X/can_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ void can_free(can_t *obj)
*/
int can_frequency(can_t *obj, int hz)
{
int reval;
int reval = 0;

/* The maximum baud rate support to 1M */
if (hz <= 1000000) {
Expand Down
2 changes: 1 addition & 1 deletion targets/TARGET_GigaDevice/TARGET_GD32F4XX/can_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ void can_free(can_t *obj)
*/
int can_frequency(can_t *obj, int hz)
{
int reval;
int reval = 0;

/* The maximum baud rate support to 1M */
if (hz <= 1000000) {
Expand Down