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 Naveenk.wins

  1. N

    [Moved] need help is solving a problem with Arrays

    hi, const char *Device_Name_a[4] = { "Dev0", "Dev1", "Dev2", "Dev3", }; const char* get_devicename(unsigned char temp) { return(Device_Name_a[ temp ]); } in handle.c file extern const char* get_devicename(unsigned char temp); local variable: const unsigned...
  2. N

    [Moved] need help is solving a problem with Arrays

    hi, i have the following definition in a dev.c const char *Device_Name_a[4] = { "Dev0", "Dev1", "Dev2", "Dev3", }; and in handle.c i have used the above information like this extern const char *Device_Name_a[]; char *device = Device_Name_a[0]; This is working fine I need...
  3. N

    CAN Message greater than 8bytes

    Hi, It's not as simple as that....There is some sort of rule...Some sort of synchronization...
  4. N

    CAN Message greater than 8bytes

    Hi, Assume if i want to send 12bytes of Data in CAN message. Because we know max is 8bytes/Frame. How to do that. Best Regards S.Naveen Kumar
  5. N

    coding for assigning memory to the pointers

    hi, It has to be like this Value += *ptr; You won't get the average of 5 if you use Value = *ptr; Because when no of values becomes 5 Ptr will have 208,*208(Value at that address) will be saved in Variable Value.. Hence change the code to be it has to be Value += *ptr;. Note: Make sure to...
  6. N

    [SOLVED] CAN Physical Layer -Recessive/Dominant Bus voltage Measurement

    Hi, This is how i measured the voltage across the bus CANH -CRO channel 1 and Connected the Ground to CANL - By this i got the differential voltage as 2.1V for Dominant Bit and <200millivolt for Recessive Bit. You can individually measure the CANH Voltage and CANL voltage and subtract the same...
  7. N

    [SOLVED] CAN Physical Layer -Recessive/Dominant Bus voltage Measurement

    Hi Friends, I need to measure the voltage levels of Recessive Bit and Dominant Bit in CAN Bus. Can any one help me how to measure the same. When i measure(voltage) i am always getting CAN_H -> 2.5605v and CAN_L-> 2.56v. My doubts 1.How to send a frame which contains only - Recessive Bit...

Part and Inventory Search

Back
Top