Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by sdecorme

  1. S

    bldc torque and speed control

    Hi, Actually I drive a DC motor in speed and torque at the same time. I would like to know if there is a solution to do the same with a bldc. The motor is 50W max. I can make a custom PCB to use a bldc driver, hall effect input and analod input. Thanks for your help
  2. S

    PIC32 make a simple CAN master stack

    I'm using a PIC32MX795 To start my project I'm using the CAN_RTR_EID sample to help me to configure. I've finished the init step (I hope) , now I'm trying to code the first message "Start the remote node"
  3. S

    Altium Multisheet PCB

    The form of the board doesn't matter you just have to draw it and select all the limits : SHIFT + left clic. I've one question ;-) Is it possible to remove the room because each time I make a PCB update I've to remove them , it is boring.
  4. S

    Altium Multisheet PCB

    You need to define your board size with the KeepOutLayer. After select all the net from this layer and make Design-> Board Shape -> Define from selected object and you will have something like this Good luck
  5. S

    PIC32 make a simple CAN master stack

    Hi, I need to drive a CAN slave with my pic. I've open a post in the microchip forum , but maybe someone may help me here too https://www.microchip.com/forums/m842698.aspx Is someone have ever done something like this ? thanks you
  6. S

    Capture PWM on a PIC32 Intx pin

    Finally I've made it like this OpenTimer45(T45_ON | T45_PS_1_1 | T45_SOURCE_INT,1600000000); ConfigINT1(EXT_INT_ENABLE | RISING_EDGE_INT | EXT_INT_PRI_7); SetSubPriorityINT1(EXT_INT_SUB_PRI_3); EnableINT1; mINT1ClearIntFlag(); INTEnableSystemMultiVectoredInt(); void...
  7. S

    Capture PWM on a PIC32 Intx pin

    Hi, Now my main prog run and the Capture interrupt too , here is my code For the init: //Clear interrupt flag mIC1ClearIntFlag(); // Setup Timer 3 OpenTimer3(T3_ON | T1_PS_1_1, 0x0); // Enable Input Capture Module 1 // - Capture Every edge // - Enable capture interrupts...
  8. S

    Capture PWM on a PIC32 Intx pin

    Hi Jinzpaul4u, Thanks you but my main loop look like this already main { Initialize() while(1) { Toggle_LED_2(); } } So your code looks mine and done works. my led2 stop to toggle at the first interrupt; Thanks you
  9. S

    Capture PWM on a PIC32 Intx pin

    Hi, I try to capture aPWM coming on my Int1 pin of my PIC32MX695F512H when I use this code the interrupt make toggling the led at the right frequency, but after the first interrupt my main loop crash and never loop again . Any ideas ? void Initialize(void) { mInit(); OpenTimer23(T2_ON...

Part and Inventory Search

Back
Top