Daniel Santana
Daniel Santana
Hello, I´m also having this issue in the Software_SPI example: exit status 1 call of overloaded 'TMC2130Stepper(int, double, int, int, int)' is ambiguous A bit of background: I installed your...
the overload error dissapear by replacing: `TMC2130Stepper driver = TMC2130Stepper(CS_PIN,R_SENSE, SW_MOSI, SW_MISO, SW_SCK); // Software SPI` by `TMC2130Stepper driver = TMC2130Stepper(CS_PIN, float(R_SENSE), SW_MOSI, SW_MISO, SW_SCK); // Software SPI` but no...
Ok, I have seen the problem: in your TMCStepper / Simple.ino example, the R sense var is defined in this way: "#define R_SENSE 0.11*f*" but in the TMCStepper / Software_SPI.ino...
In the web docs, https://docs.temporal.io/dev-guide/python/project-setup#dev-server-worker ``` async def main(): client = await Client.connect("localhost:7233", namespace="backgroundcheck_namespace") worker = Worker( client, namespace="backgroundcheck_namespace", task_queue="backgroundcheck-boilerplate-task-queue", workflows=[BackgroundCheck], activities=[ssn_trace_activity], ) ``` (We can see, how the namespace...