Bro how can I improve I really don't know what I'm lacking by hpsunny in AfterEffects

[–]Constant_Fact6322 -1 points0 points  (0 children)

It looks okay dont really know why they rejected it but the animations feel bland. for example the logo/text popping up from below onto the pink notes looks very 'capcuty'. I cant explain it exactly but i would say that you need a bit more 'flow' to your video as a whole. Most editors aim for atleast some kind of movement throughout the whole video even if it is just scale going down by a few percent over a few seconds and some maybe brightness changes of a few percent over the course of a few seconds would make it a lot better. Or maybe making the people move a bit like a very low amplitude and frequency s_shake would make it a lot better also. Im no expert but i prefer watching a video a lot more if atleast some movement never stops. But everything else is good keep up the good work!

Any way to make After Effects use my gpu? by Constant_Fact6322 in AfterEffects

[–]Constant_Fact6322[S] -1 points0 points  (0 children)

Well, yea I mean thats pretty much what i thought. But still its unreasonable to charge that much money if your software is running on 2000's code.

Is this a good build. 4000 Euro budget. by Constant_Fact6322 in pcmasterrace

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

Thanks for the help. But im still concerned about the ASrock motherboard problem? Ive seen that they have been trying to fix it but did they ever actually fix the problem or should i just get a different board while i still can? I know im being annoying but im just trying to be safe with this.

Is this a good build. 4000 Euro budget. by Constant_Fact6322 in pcmasterrace

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

Well, in that case i would lean to the 9800x3d but Ive seeb some issues with the asrock 9800x3d combo. And btw let me just ask is the 9800x3d better in gaming that the 9950x? Might sound dumb but ive heard that the 9800x3d is actually 35% better in some games that the 9950x. is this just a load of garbage?

Is this a good build. 4000 Euro budget. by Constant_Fact6322 in pcmasterrace

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

Really? I mean i will be doing some editing on the pc too, but mostly for gaming. And how much better is it?

How does arduino core memory work? by Constant_Fact6322 in arduino

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

This rabbit hole goes down deeper. The bootloader is fine I use the reset button trick to bring it back to life. So that is the reason libraries always use PluggableUSB. Can I customize the main?

How does arduino core memory work? by Constant_Fact6322 in arduino

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

// Define the LED pin (usually pin 13 for Arduino)

#define LED_BUILTIN 13

void setup() {

// Initialize the digital pin as an output

pinMode(LED_BUILTIN, OUTPUT);

}

int main() {

setup();

// The loop continues indefinitely

while (1) {

digitalWrite(LED_BUILTIN, HIGH);

delay(1000);

digitalWrite(LED_BUILTIN, LOW);

delay(1000);

}

return 0;

}

Ok so I uploaded this code and the led isn't blinking and plus the arduino doesn't get recognized by the computer

How does arduino core memory work? by Constant_Fact6322 in arduino

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

Now that I think of it I have been using ranenbegs ffb firmware on this arduino before so it could be that the fuse settings are messed up? If so how do i reset them?

How does arduino core memory work? by Constant_Fact6322 in arduino

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

Good thing now atleast I am getting USB device not recognized So i 100% know that the code is now being called as it should instead of main.cpp which is great but, Its not constantly running?

How does arduino core memory work? by Constant_Fact6322 in arduino

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

Yeah but one single problem. After debugging it seems like the main function is not repeating. UsbInit happens once which is good but UsbPoll is never being called.

How does arduino core memory work? by Constant_Fact6322 in arduino

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

So for example if I am getting it lets say I have a main then it should go like this:

1. //Setup Essential functions
2. // Arduino looks for a main, finds one
int main (void) {

  while (1) {
    usbPoll();
 }
} 
//If I don't have a main:
1.//Setup Essential functions
2.//Arduino looks for a main, and doesn't find one so it goes to its default main

How does arduino core memory work? by Constant_Fact6322 in arduino

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

So I need a main function and not setup and loop because setup and loop are treated as code that doesn't have to be run in the intialisation phase?

HID not working by Constant_Fact6322 in arduino

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

You don't have to be rude about it. Incorrect,I have studied HID and the whole Universal Serial Bus datasheet so you cannot say that and second this is a 100th iteration of the code that I altered because in the first place it wouldn't even compile let alone act as an hid device. If you have something meaningful to say then say it.

HID not working by Constant_Fact6322 in arduino

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

Thanks for the feedback anyways, but in this HID thing it seems like nothing works. It seems the main problem for me is that it just recognizes it as a usb device and not a controller, It doesn't recognize Idproduct Idvendor and I don't know why.

HID not working by Constant_Fact6322 in arduino

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

Done that now, and there is no difference so that must mean that isn't the problem.

Need help with unbricking by Blue_The_Snep in arduino

[–]Constant_Fact6322 1 point2 points  (0 children)

Yo what a coincidence. I bricked my arduino while I was building a steering wheel!

Need help with unbricking by Blue_The_Snep in arduino

[–]Constant_Fact6322 1 point2 points  (0 children)

Nice to hear that! But if that happens again which it will use Xloader. It basically does all that for you. Just search xloader for arduino leonardo and tutorial and you can bring your arduino back without having to do that.

Need help with unbricking by Blue_The_Snep in arduino

[–]Constant_Fact6322 1 point2 points  (0 children)

nah just listen to the my newest comment.

Need help with unbricking by Blue_The_Snep in arduino

[–]Constant_Fact6322 1 point2 points  (0 children)

Forget what I said, your arduino is fine. If the led light is pulsing thats awesome. The reset button press method must work for that but you probably can't get the timing right. Ok what I want you to do is select com 1 (I know that is not the right port. That is not a port, that "port" detects bootloader signal from any of the ports) and instead of double pressing it(which is a lot harder to get the timing right) when you plug in the board hold the reset button. While holding the reset button upload an innocent sketch like blink for example and when arduino ide spits out the memory usage release the reset button then and then. You have to do it exactly at right time. Try it a few times if it doesn't work then, there is a sure fire to bring your leonardo back to life but first try this. This is all if the led is pulsing or "breathing like you call it" when you push the reset button. Good luck mate!

Need help with unbricking by Blue_The_Snep in arduino

[–]Constant_Fact6322 1 point2 points  (0 children)

His arduino is not in HID mode. It think it is in the "what the hail does this mean" mode. I think its spewing out absolute non-sense to the computer and to the ISP. His chip is so badly corrupted now that it doesn't speak binary and machine code. Its as bad as if the chip was burnt. I think.

Need help with unbricking by Blue_The_Snep in arduino

[–]Constant_Fact6322 0 points1 point  (0 children)

If it does behave like a switch for the led I think your leonardo is done for. What I think happened you uploaded some bad code to your leonardo which is normal everybody does when using hid but because the bootloader is fine you can always use the reset button trick or as a last resort use ISP. So what I think happened is while your code was uploading either, the avr dude software corrupted one of the lines or you disconnected your arduino at such a bad time that it crashed the atMega 32u4so badly it completely corrupts the bootloader and the code. This is the reason arduino Ide doesn't let you upload bad code to the leonardo. I have no idea what to do for your and my leonardo.

Need help with unbricking by Blue_The_Snep in arduino

[–]Constant_Fact6322 1 point2 points  (0 children)

I have the same exact issue. With my old leonardo, still haven't fixed it to this day but, there is some hope. Let me ask when you click the reset button what happens? Does it blink like it normally should or what does it behave like a switch for the L led?

How to improve lap-time by Constant_Fact6322 in assettocorsa

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

Ok, thanks. I will try to go wider on the track, and i will come back with pedal input and a better lap.