-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using cw308t-stm32f3 #224
Comments
Could you clarify it a bit between the three?
Point 1 and 2 should behave the same. Same code, same target, just install the |
Oh I see that clear for Point 1 and Point 2. But if I want to use the CW308 UFO in a stand-alone manner with a ST-Link V2, is that right that I need to change the communication part (i.e., HAL?) with the function provided by STM32 ? |
OK so we don't currently support this type of setup. But the changes aren't that hard. I assume you have the UFO motherboard with the STM32F3 target plugged in? You'll have to figure out how to connect your ST-Link V2 and serial device to your UFO board. Furthermore, you'll have to figure out how to clock your chip (and adapt the HAL accordingly, but it's a minimal change). I suggest you get a Nucleo Board (any should do), but the STM32F4 Discovery should do as well. They have a ST-Link V2 on board with a 6-Pin SWD connector. You need to disconnect the Nucleo-target board by removing two jumpers to be able to use the on-board ST-Link for an external device (refer to the Nucleo manuals) and then use jumper cables to connect the SWD ports to the appropriate J6 ports on the UFO motherboard (SDWIO to TMS, SWDCLK to TCLK, SWO to TDO, GND to GND, NRST to NRST, VDD_TARGET you can probably leave unconnected). Also connect your serial device (the Nucelo boards have a built-in serial device that you can use!) to the TX/RX on J5 of the UFO motherboard (i.e., TX from Serial to RX on the UFO, and vice versa). Final part is to adapt the clocking setup in The HAL code probably doesn't need any further adjustments beyond the clocking stuff. If you want to use the automated Python scripts of the project, you'll have to define a separate target. But there you can probably just copy what's done for the I don't have the time right now to give more detailed guidance, but that should set you on the right path to do it yourself. Otherwise, you'll have to wait a few weeks and I can implement this as a separate target (e.g., adding something named like |
I am not sure about my understanding. So if I get a Nucleo Board, I can conncet the ST-Link V2 on it togerther with my UFO board. The Nucleo Board here may work like a communication bridge between PC and UFO board, and in this way I just need to change the clock settings. But I also see that the ST-Link V2 can plug in J6 on UFO that maybe I don't need a Nucleo Board. Then in this way maybe I need to change more like clock settings and HAL ? If so, I may considering having a Nucleo Board and I will try myself first. Thank you for your guidance and it will be great help if you can implement cw308t-stm32f3-standalone as a separate target when you have free time. Thank you so much. |
I just found the cause of this issue. Actually it is not due to this repository but to mupq/mupq. This fixed it for me and I could verify the correctness of the ChipWhisperer boards. P.S.: the testvectors.py is absolutely not verbose and makes it hard to debug things like this. (Just to mention it at some place) |
This was solved in the mupq/mupq repo as stated in mupq/mupq#116 and the submodule in pqm4 was updated to include this solution. |
I am sorry to ask here for I am new to this project.
I want to use cw308t-stm32f3 as my experiment platform but I am not clear about the whole board I needed. Is a cw ufo basis board together with a stm32f3 target board just fine or I still need a cw-lite board as well?
The text was updated successfully, but these errors were encountered: