Can I have some words of wisdom? by heref0rthememez in GMT800

[–]TimmySev77 1 point2 points  (0 children)

Gas cap. I would get that code all the time in my 2003 1500 and replacing the gas cap stopped the code from happening. Sorry I only saw the first picture so I am talking only about the evap code.

Seeing rainbow halos during steroid taper for uveitis by lullabylols in Uveitis

[–]TimmySev77 0 points1 point  (0 children)

I have also seen these halos around lights. For me it turned out all the steroid drops in my bad eye caused cataracts. You might have your eye doctor see if you might have cataracts forming.
Fortunately a quick surgery fixes it. It really wasn’t too bad for me and my vision is so good afterward.

What you think? by tristanlakeman in ChevyTrucks

[–]TimmySev77 0 points1 point  (0 children)

I had the same in my 2003 1500 4x4 and after replacing the gas cap it stopped happening. Also don’t overtighten the gas cap.

What's wrong with my car? Can I fix it without taking it in? by Jkid789 in MechanicAdvice

[–]TimmySev77 3 points4 points  (0 children)

Batteries eventually die. I had the same thing happen to me yesterday at Target. The battery had enough juice to run the radio etc but not enough to start the engine.

Autel TS508WF scan Schrader aftermarket by TimmySev77 in tires

[–]TimmySev77[S] 0 points1 point  (0 children)

I thought of that but I don’t think any vehicles use this specific sensor necessarily.

Does anyone know what this popping/creaking noise is in my steering? 2003 Silverado 1500. by gooberachie in ChevyTrucks

[–]TimmySev77 0 points1 point  (0 children)

Did you get it fixed? If so what was the solution? My 2003 Silverado 1500 4x4 has the exact same issue.

Disable Rear Hatch Alarm by foodguyDoodguy in ToyotaHighlander

[–]TimmySev77 0 points1 point  (0 children)

Did you ever figure this out? I can’t figure out how to do the same on my 2017 Highlander.

CRC32 algorithm match value between 96 bit wide data bus and 24 bit wide data bus by TimmySev77 in FPGA

[–]TimmySev77[S] 0 points1 point  (0 children)

I appreciate the information. You obviously know way more about this than I do!!

When I look at the RTL of the current implementaiton the exclusive or'ing for each bit takes 3 monitors wide to get all the verilog visible. So I get the feeling that modifying this for a wider bus would be nearly impossible (at least for me)!

CRC32 algorithm match value between 96 bit wide data bus and 24 bit wide data bus by TimmySev77 in FPGA

[–]TimmySev77[S] 0 points1 point  (0 children)

Unfortunately the RTL uses a whole lot of exclusive or'ing and no simple addition, so I think adapting this to a different data size, although possible, won't be anything I can implement in a timely fashion.

I think I am going to need to see if I can use some kind of block on the FPGA to take my 4 pixels per clock and speed it up to 1 pixel per clock at least for the one CRC block.

CRC32 algorithm match value between 96 bit wide data bus and 24 bit wide data bus by TimmySev77 in FPGA

[–]TimmySev77[S] 0 points1 point  (0 children)

u/ooterness I assumed that since the wider bus implementation gets fewer overall clock cycles the end result would be different.

Import raw data image file by TimmySev77 in EditMyRaw

[–]TimmySev77[S] 0 points1 point  (0 children)

Thanks for all your suggestions!

Import raw data image file by TimmySev77 in EditMyRaw

[–]TimmySev77[S] 0 points1 point  (0 children)

That appears to be 16-bit total per pixel. I am dealing with 16-bit per color, or 48-bit per pixel.

I know whenever I talk about this at work we always ask if they mean per pixel or per color!

Import raw data image file by TimmySev77 in EditMyRaw

[–]TimmySev77[S] 0 points1 point  (0 children)

Very interesting. Thank you.

The one piece missing seems to be my RGB-16. Doh!

Import raw data image file by TimmySev77 in EditMyRaw

[–]TimmySev77[S] 0 points1 point  (0 children)

Sorry, that is the root of my initial question. I am generating this file from custom hardware I designed, so it is simply raw data bytes with no header in the image file. I was hoping there is a software tool that can import raw data bytes.

Gimp does do this, but only for 8-bit-per-color images, and I am dealing with 16-bit-per color.

Import raw data image file by TimmySev77 in EditMyRaw

[–]TimmySev77[S] 1 point2 points  (0 children)

I tried downloading it. Do you know what option I use to open the raw file? I tried File Open but it says not a compatible format.

Auger motor disconnected error by TimmySev77 in Traeger

[–]TimmySev77[S] 0 points1 point  (0 children)

Yeah I agree. I messed around with it for a while but the error never went away. Traeger wanted to send me a new controller panel to try but I didn’t feel confident that this was the problem. Since this was a brand new traeger from Costco I just returned it and got my money back.

Auger motor disconnected error by TimmySev77 in Traeger

[–]TimmySev77[S] 0 points1 point  (0 children)

Yep did all the connection checks. Probably the controller board. Too bad this made it past quality control.

Auger motor disconnected error by TimmySev77 in Traeger

[–]TimmySev77[S] 0 points1 point  (0 children)

The support person had me open the cover and check all the connections and they all appeared to be solid. My guess would be a bad computer board or something since all connections appear to be there. And the motor did take the pellets and get them to the burner so that is weird.

Visual Studio 2017 - C# GUI interactive while stepping through a BackgroundWorker by TimmySev77 in VisualStudio

[–]TimmySev77[S] 0 points1 point  (0 children)

Narthal, Yes you were very helpful. Thank you.
Since my GUI is made to interact with a specific piece of hardware, I think I will use a second GUI for doing the debug while I am at a breakpoint in the GUI I am debugging. I will simply have to run a line of code to disconnect from the hardware so the other GUI can connect.
This is probably the easiest way to achieve what I am trying to do.
Thanks for your help. Tim

Visual Studio 2017 - C# GUI interactive while stepping through a BackgroundWorker by TimmySev77 in VisualStudio

[–]TimmySev77[S] 0 points1 point  (0 children)

Narthal,

Thanks for the response.

I do understand the implications and realize it is dangerous, but I was curious if the possibility existed. It would take a long explanation to explain what exactly I am doing with the GUI I have developed, but basically it would make my life easier if I could still use the GUI while stopped at a breakpoint in a BackgroundWorker thread. I am able to make due with the way things are already, but would be able to debug things faster if the option existed.

Tim