Skip to content

Commit

Permalink
rename setBusId() param to not hide class member
Browse files Browse the repository at this point in the history
- partial fix luxonis#247
  • Loading branch information
diablodale committed Mar 16, 2023
1 parent 264fa85 commit a798e7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/depthai/pipeline/node/SPIOut.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ class SPIOut : public NodeCRTP<Node, SPIOut, SPIOutProperties> {
* Specifies SPI Bus number to use
* @param id SPI Bus id
*/
void setBusId(int id) {
properties.busId = id;
void setBusId(int busId) {
properties.busId = busId;
}
};

Expand Down

0 comments on commit a798e7b

Please sign in to comment.