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 Easyrider83

  1. Easyrider83

    Which microcontroller to use to control a BLDC motor?

    If the task is to perform the simulation only, then you need to get rid of analog part. It is useless to simulate power electronics in proteus. It's just a simple toy to make some estimations very far from reality. No driver, no power transistors, just mcu and bldc is enough to debug your code...
  2. Easyrider83

    [SOLVED] LCD Interfacing program

    32 is an offset where in font array the first simbol is located
  3. Easyrider83

    Why is it necessary to disable interrupts when loading transmit data into transmit bu

    This is called 'the race condition' - it is the situation when data transfer can be interrupted and data will be corrupted because of that. If you are completly sure that you will prevent that, no point to disable the interrupt this time. To avoid that ring buffer or multiple buffers should be...
  4. Easyrider83

    Plz help in my project Smart Parking

    He doesn't need any sensors, it's a homework. We should write a code for him.
  5. Easyrider83

    What languages or compiler they use this code

    Google says MPLAB-X XC8, took 7 sec of my life
  6. Easyrider83

    ST7036i and mikroc STUCK

    Try like this void ack() { if (ACKSTAT_bit == 0) { UART1_Write_Text("Ack"); } if (ACKSTAT_bit) { UART1_Write_Text("No Ack"); } }
  7. Easyrider83

    [SOLVED] Interface Temperature Sensor

    I recomend to use curve expert sw. Very easy to use.
  8. Easyrider83

    Bluetooth Serial Module for PIC Microcontroller

    The cost of ESP32 will be equal as your pic, but it has wifi, ble and support FreeRTOS. And it is ARM.
  9. Easyrider83

    Simple C code for 50 point moving average filter using Buffer

    void add_value(double *buf, uint16_t size, double value) { uint16_t i; for (i = 1; i != size; i++) buf[i] = buf[i + 1]; buf[size - 1] = value; } double get_average(double *buf, uint16_t size, uint16_t average) { double sum = 0; uint16_t i; for (i = size - average; i != size; i++)...
  10. Easyrider83

    [ARM] emwin whitout external ram stm32f103

    It is possible. I have STM32F103VC which runs emWin on SD1289 320x240. But you need to understand that basically all cpu resources will be used for GUI. In your case you have a troubles with interface functions. You didn't provided LCD driver for your application.
  11. Easyrider83

    Orangepi zero as a usb device

    It has USB OTG, but what device you are wanna to implement?
  12. Easyrider83

    [SOLVED] Printer Data Logger-Device

    Are you ready for reverse engineering the printer driver?
  13. Easyrider83

    Real use of left and right alignment in ADC

    For 10 bit adc, if you need all 10 bits you are reading low and high value of conversion result using right alignment. If you need only 8 bits, you use left alignment and take only high value.
  14. Easyrider83

    [General] Structure Copying Issue in Keil

    You have no understanding of pointers data_ID *dataID = (data_ID *)malloc(sizeof(data_ID ));// Allocate memory for struct data_ID After this txdata will still be a undefined pointer and have to be allocated next
  15. Easyrider83

    [ARM] Enc28j60 with STM32F4

    First you need to make ethernet working with static ip and working ping Next step is to process http request. Generate a simple html page is easy, but for live data ajax request have to be implemented. This is very advanced for now.

Part and Inventory Search

Back
Top