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 RetroWaveLib/Board/MasterGear.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,4 @@ void retrowave_mastergear_queue_sn76489_right(RetroWaveContext *ctx, uint8_t val
// ALL off
ctx->cmd_buffer[ctx->cmd_buffer_used - 2] = 0xff;
ctx->cmd_buffer[ctx->cmd_buffer_used - 1] = 0x00;
}
}
2 changes: 1 addition & 1 deletion RetroWaveLib/Board/MiniBlaster.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ void retrowave_miniblaster_queue(RetroWaveContext *ctx, uint8_t reg, uint8_t val
ctx->cmd_buffer[ctx->cmd_buffer_used - 2] = 0xef; // A0 = 0
ctx->cmd_buffer[ctx->cmd_buffer_used - 1] = val;
}
}
}
2 changes: 1 addition & 1 deletion RetroWaveLib/Board/MiniBlaster.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ extern void retrowave_miniblaster_queue(RetroWaveContext *ctx, uint8_t reg, uint

#ifdef __cplusplus
};
#endif
#endif
2 changes: 1 addition & 1 deletion RetroWaveLib/Platform/Linux_SPI.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,4 @@ void retrowave_deinit_linux_spi(RetroWaveContext *ctx) {
free(pctx);
}

#endif
#endif
2 changes: 1 addition & 1 deletion RetroWaveLib/Platform/POSIX_SerialPort.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,4 +180,4 @@ void retrowave_deinit_posix_serialport(RetroWaveContext *ctx) {
free(pctx);
}

#endif
#endif
2 changes: 1 addition & 1 deletion RetroWaveLib/Platform/STM32_HAL_SPI.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ int retrowave_init_stm32_hal_spi(RetroWaveContext *ctx, void *hspi, void *cs_gpi
void retrowave_deinit_stm32_hal_spi(RetroWaveContext *ctx) {
free(ctx->user_data);
}
#endif
#endif
2 changes: 1 addition & 1 deletion RetroWaveLib/Platform/STM32_HAL_SPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ extern void retrowave_deinit_stm32_hal_spi(RetroWaveContext *ctx);
#ifdef __cplusplus
};
#endif
#endif
#endif
2 changes: 1 addition & 1 deletion RetroWaveLib/Platform/Web_SerialPort.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,4 @@ void retrowave_deinit_web_serialport(RetroWaveContext *ctx) {
webserial_deinit();
}

#endif
#endif
2 changes: 1 addition & 1 deletion RetroWaveLib/Platform/Win32_SerialPort.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,4 @@ void retrowave_deinit_win32_serialport(RetroWaveContext *ctx) {
free(pctx);
}

#endif
#endif
2 changes: 1 addition & 1 deletion RetroWaveLib/Platform/Win32_SerialPort.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ extern void retrowave_deinit_win32_serialport(RetroWaveContext *ctx);
};
#endif

#endif
#endif
2 changes: 1 addition & 1 deletion RetroWaveLib/Protocol/Serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ uint32_t retrowave_protocol_serial_pack(const void *_buf_in, uint32_t len_in, vo

#ifdef __cplusplus
};
#endif
#endif
2 changes: 1 addition & 1 deletion RetroWaveLib/Protocol/Serial.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ extern uint32_t retrowave_protocol_serial_pack(const void *_buf_in, uint32_t len

#ifdef __cplusplus
};
#endif
#endif
Loading