Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: hardware_dma_controller.c
- Revision:
- 0:716b93ab9a58
- Child:
- 1:c125f4e65df7
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hardware_dma_controller.c Fri Oct 29 20:56:20 2021 +0000 @@ -0,0 +1,108 @@ +#include "gpio.h" +#include "hardware_dma_controller.h" +#include "stm32f4xx_rcc_mort.h" +#include "hardware_adc.h" + +//Defining Base Addresses and Registers +#define DMA2_BASE_ADDRESS ((uint32_t)0x40026400) +#define DMA2_LISR_REGISTER (DMA2_BASE_ADDRESS + 0x00) +#define DMA2_HISR_REGISTER (DMA2_BASE_ADDRESS + 0x04) +#define DMA2_LIFCR_REGISTER (DMA2_BASE_ADDRESS + 0x08) +#define DMA2_HIFCR_REGISTER (DMA2_BASE_ADDRESS + 0x0C) +#define DMA2_S0CR_REGISTER (DMA2_BASE_ADDRESS + 0x10) +#define DMA2_S0NDTR_REGISTER (DMA2_BASE_ADDRESS + 0x14) +#define DMA2_S0PAR_REGISTER (DMA2_BASE_ADDRESS + 0x18) +#define DMA2_S0M0AR_REGISTER (DMA2_BASE_ADDRESS + 0x1C) +#define DMA2_S0M1AR_REGISTER (DMA2_BASE_ADDRESS + 0x20) +#define DMA2_S0FCR_REGISTER (DMA2_BASE_ADDRESS + 0x24) + +//Defining bits and flags +//DMA_SxCR: DMA STREAM X CONFIGURATION REGISTER +#define DMA_SxCR_CHANNEL_2_SELECT (((uint32_t)2)<<25) //To Select Channel 2 +#define DMA_SxCR_MSIZE_HALF_WORD (((uint32_t)1)<<13) //The location memory is 16 bits in length +#define DMA_SxCR_PSIZE_HALF_WORD (((uint32_t)1)<<11) //The peripheral data size is 16 bits in length +#define DMA_SxCR_MINC_INCREMENT (((uint32_t)1)<<10) //Increment the place where you store the data each transfer +#define DMA_SxCR_CIRC_ENABLE (((uint32_t)1)<<8) //Enable circular mode +#define DMA_SxCR_DIR_PERTOMEM 0 +#define DMA_SxCR_STREAM_ENABLE 1 + +uint16_t adcDmaDataStorageBuffer[3]; //Variable Definition to store read values +uint16_t adcDmaDataStorageBuffer[1]; //Variable Definition to store read value + + +//FUNCTION GIVEN BY PROFESSOR TO SETUP DMA TO READ VALUES FROM 3 PINS +void initDMAForAdc3_1Channel(void) +{ + uint32_t reg; + RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_DMA2, ENABLE); /* Enable the clock */ + + // Configure Stream 0 to use Channel 2 - ADC3 + reg = (uint32_t *)DMA2_S0CR_REGISTER; + *reg = DMA_SxCR_CHANNEL_2_SELECT + DMA_SxCR_MSIZE_HALF_WORD + DMA_SxCR_PSIZE_HALF_WORD + DMA_SxCR_DIR_PERTOMEM +DMA_SxCR_CIRC_ENABLE; + + //We will transfer 1 data registers for 1 channels of ADC + reg = (uint32_t *)DMA2_S0NDTR_REGISTER; + *reg = 1; + + //We will transfer from the ADC3 Data Register + reg = (uint32_t *)DMA2_S0PAR_REGISTER; + *reg = ADC_3_DR_REGISTER; //THIS FUNCTION IS DEFINED IN HARDWARE ADC + + //We will transfer to the adcDmaDataStorageBuffer we created + reg = (uint32_t *)DMA2_S0M0AR_REGISTER; + *reg = (uint32_t)&adcDmaDataStorageBuffer[0]; //QUESTION - WHY IS THIS ZERO??? DIDNT UNDERSTAND THIS STATEMENT + +} + + + +//FUNCTION GIVEN BY PROFESSOR TO SETUP DMA TO READ VALUES FROM 3 PINS +void initDMAForAdc3_3Channels(void) +{ + uint32_t reg; + RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_DMA2, ENABLE); /* Enable the clock */ + + // Configure Stream 0 to use Channel 2 (ADC3) + reg = (uint32_t *)DMA2_S0CR_REGISTER; + *reg = DMA_SxCR_CHANNEL_2_SELECT + DMA_SxCR_MSIZE_HALF_WORD + DMA_SxCR_PSIZE_HALF_WORD + DMA_SxCR_MINC_INCREMENT + DMA_SxCR_DIR_PERTOMEM +DMA_SxCR_CIRC_ENABLE; + + //We will transfer 3 data registers for 3 channels of ADC + reg = (uint32_t *)DMA2_S0NDTR_REGISTER; + *reg = 3; + + //We will transfer from the ADC3 Data Register + reg = (uint32_t *)DMA2_S0PAR_REGISTER; + *reg = ADC_3_DR_REGISTER; //THIS FUNCTION IS NOT DETECTED + + //We will transfer to the adcDmaDataStorageBuffer we just created + reg = (uint32_t *)DMA2_S0M0AR_REGISTER; + *reg = (uint32_t)& adcDmaDataStorageBuffer[0]; + +} + + +void enableDMAForAdc3_3channels (void) +{ + uint32_t * reg; + reg = (uint32_t *)DMA2_S0CR_REGISTER; + *reg = *reg | DMA_SxCR_STREAM_ENABLE; +} + +void enableDMAForAdc3_1channels (void) +{ + uint32_t * reg; + reg = (uint32_t *)DMA2_S0CR_REGISTER; + *reg = *reg | DMA_SxCR_STREAM_ENABLE; +} + + + +uint16_t returnADC3StoredValue(uint8_t index) +{ + return adcDmaDataStorageBuffer[index]; +} + + + + +